From 6678266bf75e513735e5df71f8865fed5d74a0a6 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 18 Nov 2022 19:23:22 +0100 Subject: [PATCH] changed C version to gnu11 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2de7ad9..96f0bb5 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Compiler Settings CC=cc -CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnull -Wunused -std=c11 +CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnull -Wunused -std=gnu11 # Source Code SRC_CORE=./src/core/lib/*.c