CodeGrade doesn't understand '-std=c23'

This commit is contained in:
2025-10-18 21:36:23 +02:00
parent 9d6725867c
commit 4f2e97b30c
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
CFLAGS = -std=c23 -Wextra -pedantic -Wall -O0 -g3 -fsanitize=address
CFLAGS = -std=c11 -Wextra -pedantic -Wall -O0 -g3 -fsanitize=address
LDFLAGS = -lncurses -fsanitize=address
spel: box.o main.o ui.o util.o chart.o

2
ui.c
View File

@@ -30,7 +30,7 @@ ui_init(void)
refresh();
}
void ui_end()
void ui_end(void)
{
endwin();
}