From 0f1f472cf09377e6eeb228210115032389f4c5d6 Mon Sep 17 00:00:00 2001 From: Jason Benaim Date: Fri, 19 Jul 2019 12:45:23 -0700 Subject: [PATCH] Revert "Makefile: change C standard to Gnu99 from C99. This fixes issue #2." Didn't fix the problem on all systems, so reverting... --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 11eb60f..c598f63 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ target ?= hs100 objects := $(patsubst %.c,%.o,$(wildcard *.c)) LDFLAGS=-lm -CFLAGS=-std=gnu99 -Os +CFLAGS=-std=c99 -Os ifdef DEBUG CFLAGS+=-Wall -Werror -ggdb endif