Skip to content

Commit 5d08ed9

Browse files
committed
Makefile: Suppress unused-function warning
This commit is to supress warnings caused by the following functions: * list_del_init * list_is_last
1 parent 7abaf78 commit 5d08ed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include mk/common.mk
22

33
CC ?= gcc
4-
CFLAGS := -O2 -g -Wall -Wextra
4+
CFLAGS := -O2 -g -Wall -Wextra -Wno-unused-function
55
CFLAGS += -include common.h
66
LDFLAGS :=
77

0 commit comments

Comments
 (0)