From 0d15712f88bb96e0bde87b1d68eab864934cc893 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Thu, 6 May 2021 19:17:37 -0400 Subject: [PATCH] Add -std=c99 to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b1494ca..d3c131f 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ SRCS = parse.y doas.c env.c include config.mk -CFLAGS := -I. -Ilibopenbsd -O2 -Wall -Wextra ${OS_CFLAGS} ${CFLAGS} +CFLAGS := -I. -Ilibopenbsd -O2 -Wall -Wextra -std=c99 ${OS_CFLAGS} ${CFLAGS} all: ${PROG} -- 2.39.2