From 151054cb964c4a57ad6b1376fd40ed58f7901001 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Sun, 25 May 2025 00:33:33 -0500 Subject: [PATCH] make: Adopted -Wno-unused-function Life's too short to not use this flag. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2100293c..05c336a6 100644 --- a/Makefile +++ b/Makefile @@ -71,6 +71,8 @@ CFLAGS += -I. CFLAGS += -std=c99 -Wall -Wextra -pedantic # labels are useful for debugging, in-function organization, etc CFLAGS += -Wno-unused-label +# life's too short to not use this flag +CFLAGS += -Wno-unused-function # compiler bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101854 CFLAGS += -Wno-stringop-overflow CFLAGS += -ftrack-macro-expansion=0