summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-02-06 23:23:22 -0500
committerTavian Barnes <tavianator@tavianator.com>2019-02-06 23:23:22 -0500
commit41fde4795277fec5a57ecb6d43d9b39123739c3f (patch)
tree8cf844280d5c68f65435d853d3514f2118d17cc2 /Makefile
parent010a755370eeb7450c0def58a8d5830ddcca7938 (diff)
downloadbfs-41fde4795277fec5a57ecb6d43d9b39123739c3f.tar.xz
Turn on -Wstrict-prototypes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c1249fa..0bf0eb7 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ INSTALL ?= install
MKDIR ?= mkdir -p
RM ?= rm -f
-WFLAGS ?= -Wall -Wmissing-declarations
+WFLAGS ?= -Wall -Wmissing-declarations -Wstrict-prototypes
CFLAGS ?= -g $(WFLAGS)
LDFLAGS ?=
DEPFLAGS ?= -MD -MP -MF $(@:.o=.d)