sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 07dd658f0d04c42015c3f102cbeeb17d16bedd65
parent 69cde2370329a5e4e6c17e7ed3322519ff256ab3
Author: sin <sin@2f30.org>
Date:   Sat, 31 May 2014 17:55:25 +0100

Use -std=c99 by default

Note, the code is largely c89 clean.  This is to avoid certain
warnings on some systems (OSX).

Diffstat:
Mconfig.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.mk b/config.mk @@ -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