Use -std=c99 by default

Note, the code is largely c89 clean.  This is to avoid certain
warnings on some systems (OSX).
This commit is contained in:
sin 2014-05-31 17:55:25 +01:00
parent 69cde23703
commit 07dd658f0d
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ MANPREFIX = $(PREFIX)/share/man
#CC = musl-gcc
LD = $(CC)
CPPFLAGS = -D_BSD_SOURCE -D_GNU_SOURCE
CFLAGS = -g -ansi -Wall -Wno-long-long -pedantic $(CPPFLAGS)
CFLAGS = -g -std=c99 -Wall -pedantic $(CPPFLAGS)
LDFLAGS = -g
#CC = tcc