aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-27 17:43:25 +0100
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-27 17:43:25 +0100
commita3ae6ed89823f28532f9c3e12eaacf538ac14913 (patch)
tree7bb5518de8728ad64496846680893ff0fb685652
parente5dff03902a109cd24f73b2a0001f2c08018d787 (diff)
downloadlog-a3ae6ed89823f28532f9c3e12eaacf538ac14913.tar.gz
log-a3ae6ed89823f28532f9c3e12eaacf538ac14913.zip
Change the standard from c89 to c99 (in tests)
-rw-r--r--test/Makefile2
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