diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-19 22:56:48 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-19 22:56:48 (GMT) |
commit | 8b6d9e5eab1dfb792c319d06a0e16a92452205b8 (patch) | |
tree | a57136e79fa2778a25791adabf45f92bda9bc059 /plugins | |
parent | 7a8b72672fa33c3136c4e3eee05bbc121f45d2ee (diff) | |
download | monitoring-plugins-8b6d9e5eab1dfb792c319d06a0e16a92452205b8.tar.gz |
Fix to add uintmax_t, for check_disk.c compile
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1456 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/common.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/common.h b/plugins/common.h index 2b65baf..47252aa 100644 --- a/plugins/common.h +++ b/plugins/common.h | |||
@@ -44,6 +44,19 @@ | |||
44 | #include <stdio.h> /* obligatory includes */ | 44 | #include <stdio.h> /* obligatory includes */ |
45 | #include <stdlib.h> | 45 | #include <stdlib.h> |
46 | #include <errno.h> | 46 | #include <errno.h> |
47 | |||
48 | /* This block provides uintmax_t - should be reported to coreutils that this should be added to fsuage.h */ | ||
49 | #if HAVE_INTTYPES_H | ||
50 | # include <inttypes.h> | ||
51 | #endif | ||
52 | #if HAVE_STDINT_H | ||
53 | # include <stdint.h> | ||
54 | #endif | ||
55 | #include <unistd.h> | ||
56 | #ifndef UINTMAX_MAX | ||
57 | # define UINTMAX_MAX ((uintmax_t) -1) | ||
58 | #endif | ||
59 | |||
47 | #include <limits.h> /* This is assumed true, because coreutils assume it too */ | 60 | #include <limits.h> /* This is assumed true, because coreutils assume it too */ |
48 | 61 | ||
49 | #ifdef HAVE_MATH_H | 62 | #ifdef HAVE_MATH_H |