From 3553e8f85014d2273b50dc2db6b2cc1c5531369b Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 15 Jan 2026 00:35:01 +0100 Subject: fix: remove -ansi as we have -std= --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ed1c393..f35b06a 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,7 @@ tests/tests: ls_queue.o tests/tests.c tests/ls_test.h # most pedantic settings. # Dont use this. ls_queue.o: ls_queue.h - $(CC) -c -x c -o $@ $^ -Wall -Wextra -Wpedantic -Werror -ansi -std=c89 \ - -DLS_QUEUE_IMPLEMENTATION \ + $(CC) -c -x c -o $@ $^ -Wall -Wextra -Wpedantic -Werror -std=c89 \ -Wno-error=pragma-once-outside-header \ -Wno-pragma-once-outside-header -- cgit