diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-10 20:29:46 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-10 20:29:46 (GMT) |
commit | b48cb1f130cda9818d06aaf74cdc7d2aef13bf42 (patch) | |
tree | b53080fe5cf9b8ae1021dc226738afac973a5819 /plugins/negate.c | |
parent | d4a781817cbe1c6168e0687aea968b7a6f348abe (diff) | |
download | monitoring-plugins-b48cb1f130cda9818d06aaf74cdc7d2aef13bf42.tar.gz |
Fix GCC's -Wimplicit-function-declaration warnings
Fix the issues found by GCC when the -Wimplicit-function-declaration
flag is specified.
Diffstat (limited to 'plugins/negate.c')
-rw-r--r-- | plugins/negate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index 493988e..ef7d4e0 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
@@ -35,6 +35,8 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; | |||
35 | 35 | ||
36 | #define DEFAULT_TIMEOUT 11 | 36 | #define DEFAULT_TIMEOUT 11 |
37 | 37 | ||
38 | #include <ctype.h> | ||
39 | |||
38 | #include "common.h" | 40 | #include "common.h" |
39 | #include "utils.h" | 41 | #include "utils.h" |
40 | #include "utils_cmd.h" | 42 | #include "utils_cmd.h" |
@@ -43,6 +45,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; | |||
43 | 45 | ||
44 | static const char **process_arguments (int, char **); | 46 | static const char **process_arguments (int, char **); |
45 | int validate_arguments (char **); | 47 | int validate_arguments (char **); |
48 | int translate_state (char *); | ||
46 | void print_help (void); | 49 | void print_help (void); |
47 | void print_usage (void); | 50 | void print_usage (void); |
48 | int subst_text = FALSE; | 51 | int subst_text = FALSE; |