diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | src/yasl.c (renamed from src/sds.c) | 2 | ||||
-rw-r--r-- | src/yasl.h (renamed from src/sds.h) | 0 |
3 files changed, 3 insertions, 3 deletions
@@ -2,8 +2,8 @@ CFLAGS += -O2 -std=c99 -ggdb -fPIE -pie -fstack-protector-all -Wl,-z,relro -Wl,- CFLAGS += -Weverything -Wno-disabled-macro-expansion -Wno-vla -Wno-cast-align CC = clang -SOURCES = test/twbctf.c src/sds.c -HEADERS = test/twbctf.h src/sds.h +SOURCES = test/twbctf.c src/yasl.c +HEADERS = test/twbctf.h src/yasl.h MANPAGES = docs/sds.3 docs/sdsnew.3 docs/sdsfree.3 all: sds-test $(MANPAGES) @@ -32,7 +32,7 @@ #include <stdlib.h> #include <string.h> -#include "sds.h" +#include "yasl.h" /// Initialization |