From fb3f67b10bd8cec44703e873b6f09bd71044e02d Mon Sep 17 00:00:00 2001 From: Shengwen Cheng Date: Thu, 25 Jan 2024 16:14:33 +0800 Subject: [PATCH] Makefile: Suppress unused function warning --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ceac660..5f60379 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include mk/common.mk CC ?= gcc -CFLAGS := -O2 -g -Wall -Wextra +CFLAGS := -O2 -g -Wall -Wextra -Wno-unused-function CFLAGS += -include common.h LDFLAGS :=