summaryrefslogtreecommitdiff
blob: affa917f74275fa08d6c8ebb13c0b2f3c77b139b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/common.mk
+++ b/common.mk
@@ -17,7 +17,7 @@
 # fully made.
 .DELETE_ON_ERROR:
 
-GCC_WARNINGS = -Wall -W -Wno-uninitialized -Wundef -Wimplicit \
+GCC_WARNINGS = -Wall -W -Wno-uninitialized -Wundef \
   -Wno-unknown-pragmas
   # We need -Wwrite-strings after we fix all the missing consts
   #
@@ -27,7 +27,7 @@
   # on -Wuninitialized for all the others.
 
 GCC_C_WARNINGS = $(GCC_WARNINGS) \
-  -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes
+  -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wimplicit
 
 GCC_CXX_WARNINGS = $(GCC_WARNINGS)  -Wsynth