From: Eric S. Raymond Date: Fri, 26 May 2017 18:03:17 +0000 (-0400) Subject: Use C99 moode of compiler. X-Git-Tag: seed~39 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=f2043034e5d40639f5fd7c3db74976284e18c2ee Use C99 moode of compiler. --- diff --git a/Makefile b/Makefile index d13aa7c..8dbcb56 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control gcc -O $(DBX) -c $< advent: $(OBJS) - gcc -O $(DBX) -o advent $(OBJS) $(LIBS) + gcc -std=c99 -O $(DBX) -o advent $(OBJS) $(LIBS) main.o: misc.h funcs.h