summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheron Spiegl <tspiegl@gmail.com>2020-07-07 17:50:44 -0500
committerTheron Spiegl <tspiegl@gmail.com>2020-07-07 17:50:44 -0500
commit383c9e4fafc82d7ddee4c081e7548ca3abad89c0 (patch)
tree48619834bbc4ba4993da4def20274f9248090474
parentffb003c698cfdaf3aad42c891d5002abbb834847 (diff)
specify std=gnu99 for older compilers
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5c35b6d..eb86953 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC = gcc
-CFLAGS = -Wall
+CFLAGS = -Wall -std=gnu99
SOURCES = $(addprefix src/, whatfiles.c attach.c utilities.c hashmap.c strings.c)
ARCH = $(shell uname -m)