From eaf06a9ad0eb27e09e62ed89ca15ca8d0eb921d3 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sat, 11 Jun 2022 17:46:59 +0200 Subject: [PATCH] added c11 version to CFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6f3a351..a5eb45d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Compiler Settings CC=cc -CFLAGS=-Wall +CFLAGS=-Wall -std=c11 # Source Code SRC=src/lib/*.c