commit d621320ad8e5909f1949d1b69e2082c34676f937
parent e4383a075dc0b28c4d1c1fc610a9e15b00e6f21a
Author: citbl <citbl@citbl.org>
Date: Mon, 13 Oct 2025 21:14:08 +1000
minor
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.clangd b/.clangd
@@ -11,7 +11,7 @@ CompileFlags:
-Wmissing-prototypes,
# -Wconversion,
-xc,
- -std=c23,
+ -std=c99,
-g,
-I/opt/homebrew/opt/libgccjit/include,
-L/opt/homebrew/opt/libgccjit/lib/gcc/current,
diff --git a/makefile b/makefile
@@ -19,7 +19,7 @@ endif
SRC = */*/*.c */*.c
BIN = oxc
-STD = -std=c23
+STD = -std=c99
debug:
cc ${STD} -g -Wall -Wextra -o ${BIN} ${SRC} ${LIB}