From 7552c187fbdc3b02655ed53d3348441d95ebec9c Mon Sep 17 00:00:00 2001 From: nah <2trill2spill@gmail.com> Date: Sun, 4 Sep 2016 10:20:31 -0500 Subject: [PATCH] Ignore missing noreturn and unused functions. --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 35dbd43..82e56e5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,7 +3,7 @@ ifeq ($(shell uname -s), Darwin) CC = clang CFLAGS += -std=c99 -pedantic -Wall -Weverything -Werror CFLAGS += -Wno-unknown-warning-option -Wno-switch-enum -CFLAGS += -Wno-padded -Wno-double-promotion +CFLAGS += -Wno-padded -Wno-double-promotion -Wno-missing-noreturn -Wno-unused-function endif ifeq ($(shell uname -s), Linux) CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror -- GitLab