From 794e533ab550c11b3efd3d7122e00228cb8137d0 Mon Sep 17 00:00:00 2001 From: nah <2trill2spill@gmail.com> Date: Sun, 4 Sep 2016 10:25:31 -0500 Subject: [PATCH] Ignore unused functions on linux. --- test/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/test/Makefile b/test/Makefile index 82e56e5..27fdd4a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -7,6 +7,7 @@ CFLAGS += -Wno-padded -Wno-double-promotion -Wno-missing-noreturn -Wno-unused-fu endif ifeq ($(shell uname -s), Linux) CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror +CFLAGS += -Wno-unused-function endif #DEBUG = -O0 -g CFLAGS += $(DEBUG)