From a07c3ddd4743953b69d9ea006edda1a5a311cf67 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Mon, 8 May 2023 13:10:26 +0200 Subject: [PATCH] use gnu standard instead of c for PI constant --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 61cfdea..3474287 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ STRIP = strip -s # Déclaration des options du compilateur COPTI = -O3 -flto -CFLAGS = -Wall $(COPTI) -std=c17 +CFLAGS = -Wall $(COPTI) -std=gnu17 CPPFLAGS = -I. LDFLAGS = -lm