From 14928a180689981c9b9de4d1ad373bf9e2694e63 Mon Sep 17 00:00:00 2001 From: Watson Wheeler Date: Sun, 28 Jun 2026 20:11:08 +1000 Subject: makefile: change C standard from c11 to c99 Signed-off-by: Watson Wheeler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 262aec9..2e067d3 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ AR ?= ar OUTDIR = build LIB = libtinyff.a -ALL_CFLAGS = -Wall -Wextra -Werror -std=c11 -Iinclude +ALL_CFLAGS = -Wall -Wextra -Werror -std=c99 -Iinclude DEBUG_FLAGS = -g -O0 -fno-omit-frame-pointer RELEASE_FLAGS = -O3 -march=native -flto -- cgit v1.2.3