From 383c9e4fafc82d7ddee4c081e7548ca3abad89c0 Mon Sep 17 00:00:00 2001 From: Theron Spiegl Date: Tue, 7 Jul 2020 17:50:44 -0500 Subject: specify std=gnu99 for older compilers --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3