summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWatson Wheeler <git@tazy.dev>2026-06-28 20:11:08 +1000
committerWatson Wheeler <git@tazy.dev>2026-07-02 19:39:07 +1000
commitf65b49d05c1fe1ef1a31616cb171a52579836d2d (patch)
tree560b7d3aa0b7e6853e99e8419e5d1f9eda94bbb4 /Makefile
parentecaefbcfac53ed72fa1e7fb2e3a426722a3d2a0e (diff)
makefile: change C standard from c11 to c99
Signed-off-by: Watson Wheeler <git@tazy.dev>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 49ccb2a..cded93e 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