From 5d58c84be43b460ba8dae36d6893e1bdb607f14d Mon Sep 17 00:00:00 2001 From: qwjyh Date: Thu, 10 Oct 2024 20:59:49 +0900 Subject: [PATCH] fix Makefile (use C23 with GNU extension) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d7ab6e6..ea5d105 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS := -Wall -Wextra +CFLAGS := -Wall -Wextra -std=gnu23 main: main.c gcc ${CFLAGS} -o $@ $^