remove pointer arithmatic warnings, since they are just useful

This commit is contained in:
2025-09-13 21:11:38 +02:00
parent 4f081e7f3e
commit 75ebff9071

View File

@@ -10,7 +10,7 @@ LD ?= ld
# setting default compilation flags
# some of which are able to be overwritten, others are always appended
CPPFLAGS ?=
CFLAGS ?= -O2 -Wall -Wextra -Wpedantic
CFLAGS ?= -O2 -Wall -Wextra -Wpedantic -Wno-pointer-arith
LDFLAGS ?= -flto
CFLAGS += -std=gnu99