From e3b4559e9b64bd9a7a116c1c7b8f9d01f4467a62 Mon Sep 17 00:00:00 2001 From: Rhett Aultman Date: Sun, 15 Jul 2012 01:08:51 -0700 Subject: [PATCH] Switch to gnu99 syntax --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index e0b1470..af51d0f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -36,7 +36,7 @@ PERL := perl # Compiler flags # -fno-builtin is required to avoid refs to undefined functions in the kernel. # Only optimize to -O1 to discourage inlining, which complicates backtraces. -CFLAGS := $(CFLAGS) $(DEFS) $(LABDEFS) -O -fno-builtin -I$(TOP) -MD -Wall -Wno-format -Wno-unused -Werror -gstabs -fno-stack-protector +CFLAGS := $(CFLAGS) $(DEFS) $(LABDEFS) -O -fno-builtin -I$(TOP) -MD -Wall -Wno-format -Wno-unused -Werror -gstabs -fno-stack-protector -std=gnu99 # Lists that the */Makefrag makefile fragments will add to OBJDIRS := -- 2.34.1