From d9319968e37dfa384b36cf01e4c3dd238da19c60 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 9 Jan 2014 11:44:37 -0500 Subject: [PATCH] lets be modern and use c99 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e72f615..0b5771a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Makefile to generate dhtest -CC?=gcc -CFLAGS?=-Wall -O3 -g +CC=gcc +CFLAGS?=-Wall -O3 -g --std=c99 -D_SVID_SOURCE -D_POSIX_SOURCE -D_BSD_SOURCE %.o: %.c headers.h $(CC) $(CFLAGS) -o $@ -c $<