diff options
author | 2023-02-27 17:43:25 +0100 | |
---|---|---|
committer | 2023-02-27 17:43:25 +0100 | |
commit | a3ae6ed89823f28532f9c3e12eaacf538ac14913 (patch) | |
tree | 7bb5518de8728ad64496846680893ff0fb685652 | |
parent | e5dff03902a109cd24f73b2a0001f2c08018d787 (diff) | |
download | log-a3ae6ed89823f28532f9c3e12eaacf538ac14913.tar.gz log-a3ae6ed89823f28532f9c3e12eaacf538ac14913.zip |
Change the standard from c89 to c99 (in tests)
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index a94bb88..34a9f38 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,7 +4,7 @@ CC = cc SRC != find * -name '*.c' OBJ = ${SRC:.c=.o} -CFLAGS = -Wall -ansi --std=c89 -pedantic\ +CFLAGS = -Wall --std=c99 -pedantic\ -I../src/ LDFLAGS = -L../ -l:liblog.a |