summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2013-12-21 23:09:09 +0100
committerOlivier Gayot <duskcoder@gmail.com>2014-01-18 13:43:52 +0100
commit3522c68dcd38e3eef393771d65aff6de2f815da3 (patch)
treeabe4ba88238482dbfb6fdebcded3f5c3626d1c7d /Makefile
parent9f25faad5fe732e498942818dc45de78ce7f3766 (diff)
rb: add ascii support
in order to be able to deal with strings (i.e null terminated), we provide a new set of functions rb_puts rb_printf / rb_vprintf rb_gets / rb_gets2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 62eefa6..98d1a73 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CFLAGS += -W -Wall -std=c99 -Wextra
CFLAGS += -I./
CFLAGS += -D _GNU_SOURCE
NAME = librb.a
-SRC = src/rb.c
+SRC = src/rb.c src/rb_str.c
AR = ar rc