diff options
author | Simon Ser <contact@emersion.fr> | 2019-11-20 00:45:19 +0100 |
---|---|---|
committer | Scott Anderson <scott@anderso.nz> | 2019-11-20 02:05:03 +0000 |
commit | 16e5e9541b3de49e397a3d2caa3212db25487648 (patch) | |
tree | 9d1cc82dc037db865181a6742eade6d866803cd9 /meson.build | |
parent | 685a5a11a9f6305f7479550247b333ffdf036d73 (diff) |
Add -Wmissing-prototypes
This requires functions without a prototype definition to be static.
This allows to detect dead code, export less symbols and put shared
functions in headers.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 7e8305b7..18528df2 100644 --- a/meson.build +++ b/meson.build @@ -34,6 +34,7 @@ add_project_arguments(cc.get_supported_arguments([ '-Wendif-labels', '-Wstrict-aliasing=2', '-Woverflow', + '-Wmissing-prototypes', '-Wno-missing-braces', '-Wno-missing-field-initializers', |