Add -pedantic

This commit is contained in:
lily 2025-12-14 08:58:26 +11:00
parent b3d3bc91ea
commit ce21da8661

View file

@ -1,6 +1,6 @@
# Compiler and flags # Compiler and flags
CC = gcc CC = gcc
CFLAGS = -Wall -Wextra -std=c99 -O3 -flto CFLAGS = -Wall -Wextra -std=c99 -pedantic -O3 -flto
DEBUG_FLAGS = -g -DDEBUG DEBUG_FLAGS = -g -DDEBUG
# Directories # Directories