diff options
author | Sven Nierlein <sven@nierlein.org> | 2014-06-28 20:24:52 (GMT) |
---|---|---|
committer | Sven Nierlein <sven@nierlein.org> | 2014-06-28 20:24:52 (GMT) |
commit | 2438931a3fe7e600c6fe48b163125ea179faea73 (patch) | |
tree | 258fe724ecdf75a8f05f3851af90eb511702ba3b /plugins/negate.c | |
parent | 8d6c1833477bd3c3202cf7c94ec39c40ed9c2902 (diff) | |
parent | 6e246799b939d29fe80da03ee39a24ef68f78cb0 (diff) | |
download | monitoring-plugins-2438931a3fe7e600c6fe48b163125ea179faea73.tar.gz |
Merge pull request #1262 from waja/fix_aix
Include common.h before any system headers.
Diffstat (limited to 'plugins/negate.c')
-rw-r--r-- | plugins/negate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index d512e34..beaed1e 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
@@ -35,12 +35,12 @@ const char *email = "devel@monitoring-plugins.org"; | |||
35 | 35 | ||
36 | #define DEFAULT_TIMEOUT 11 | 36 | #define DEFAULT_TIMEOUT 11 |
37 | 37 | ||
38 | #include <ctype.h> | ||
39 | |||
40 | #include "common.h" | 38 | #include "common.h" |
41 | #include "utils.h" | 39 | #include "utils.h" |
42 | #include "utils_cmd.h" | 40 | #include "utils_cmd.h" |
43 | 41 | ||
42 | #include <ctype.h> | ||
43 | |||
44 | /* char *command_line; */ | 44 | /* char *command_line; */ |
45 | 45 | ||
46 | static const char **process_arguments (int, char **); | 46 | static const char **process_arguments (int, char **); |