From 7ee9bc3ecdb0b7006516f36f8454788f8ff07311 Mon Sep 17 00:00:00 2001 From: nah <2trill2spill@gmail.com> Date: Sun, 4 Sep 2016 10:31:57 -0500 Subject: [PATCH] Ignore missing prototype warning. --- test/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 82e56e5..6c1120f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,7 +3,8 @@ 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 -Wno-missing-noreturn -Wno-unused-function +CFLAGS += -Wno-padded -Wno-double-promotion -Wno-missing-noreturn +CFLAGS += -Wno-missing-prototypes endif ifeq ($(shell uname -s), Linux) CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror