From 934c44b3c3fe2d609990e83c56c74383725b0a21 Mon Sep 17 00:00:00 2001 From: nulano Date: Mon, 12 Oct 2020 02:02:59 +0100 Subject: [PATCH] -Werror=implicit-function-declaration --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cbee5923b..4fd031b69 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ install: .PHONY: install-coverage install-coverage: - CFLAGS="-coverage" python3 setup.py build_ext install + CFLAGS="-coverage -Werror=implicit-function-declaration" python3 setup.py build_ext install python3 selftest.py .PHONY: debug