From 680f3c77abd0f9c18de7b4524f72adbe517a21d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Sun, 2 Jun 2024 01:31:53 +0500 Subject: [PATCH] Add "-std=c99" into Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2462f3..ec93166 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ all: mkdir -p bin/ - $(CC) -o bin/foxpc -O2 -Wall -Wextra -Wpedantic src/*.c + $(CC) -o bin/foxpc -O2 -Wall -Wextra -Wpedantic -std=c99 src/*.c