From 5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Mon, 1 May 2023 00:38:33 -0400 Subject: move back to c99 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a2be56b..611ea8d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC = gcc INCFLAGS = -Isrc -CCFLAGS = -std=gnu99 -Wall -Wextra -pedantic -O2 +CCFLAGS = -std=c99 -Wall -Wextra -pedantic -O2 -D_DEFAULT_SOURCE CCFLAGS += $(INCFLAGS) LDFLAGS += $(INCFLAGS) -- cgit v1.2.3-freya