Valgrind + gcc -pedantic fixes

This commit is contained in:
Aaron Gutierrez
2020-06-12 18:38:03 -07:00
parent cddaf13050
commit 711e9a4042
4 changed files with 11 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
CFLAGS=--std=c18 -O2 -Wall -Wextra -pedantic
CFLAGS=--std=c11 -O2 -Wall -Wextra -pedantic
LDLIBS=-lncurses -lcurl
.phony: clean
@@ -10,7 +10,7 @@ objects := $(patsubst %.c,%.o,$(srcs))
ncac: $(objects)
tags: $(srcs) $(hdrs)
ctags -w -t $^
ctags -w $^
clean:
rm -f **/*.o ncac