What is the most bullshit error you've ever seen?

'error: no newline at end of file'

This only occurs in the MacOS builds.
This commit is contained in:
2025-01-15 08:40:22 +11:00
parent 730353342d
commit 05451af8d7
8 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
#compiler settings
CC=gcc
CFLAGS+=-std=c17 -g -Wall -Werror -Wextra -Wpedantic -Wformat=2
CFLAGS+=-std=c17 -g -Wall -Werror -Wextra -Wpedantic -Wformat=2 -Wno-newline-eof
LIBS+=-lm
LDFLAGS+=