Refactor parser to C11 and update build configuration

This commit is contained in:
2026-04-29 10:38:34 +02:00
parent 15714393c3
commit 34b7939f76
2 changed files with 7 additions and 17 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ V0_TEST_OBJ := $(patsubst v0/%.c,v0/bin/%.o,$(V0_TEST))
V0_SRC_DEPS := $(V0_SRC_OBJ:.o=.d)
V0_TEST_DEPS := $(V0_TEST_OBJ:.o=.d)
CFLAGS += -Werror -Wall -pedantic -std=c89
CFLAGS += -Werror -Wall -pedantic -std=c11
v0/bin/c2: $(V0_SRC_OBJ)
$(CC) $(CFLAGS) -o $@ $^