diff options
author | Sven Nierlein <Sven.Nierlein@consol.de> | 2013-08-20 15:01:52 (GMT) |
---|---|---|
committer | Sven Nierlein <sven@consol.de> | 2013-08-20 15:02:02 (GMT) |
commit | 4083622f86e1fe0fef1e81f23a2ca7a4614ea481 (patch) | |
tree | 217072824a91a8514e62308dc4ad3cea2ca22427 /lib/utils_base.c | |
parent | 4eab02cdaf01e1c44707586e3781a09c44b6aabe (diff) | |
download | monitoring-plugins-4083622f86e1fe0fef1e81f23a2ca7a4614ea481.tar.gz |
added missing header to fix build on freebsd
Diffstat (limited to 'lib/utils_base.c')
-rw-r--r-- | lib/utils_base.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/utils_base.c b/lib/utils_base.c index c93e9c3..8685e6f 100644 --- a/lib/utils_base.c +++ b/lib/utils_base.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <stdarg.h> | 28 | #include <stdarg.h> |
29 | #include "utils_base.h" | 29 | #include "utils_base.h" |
30 | #include <fcntl.h> | 30 | #include <fcntl.h> |
31 | #include <sys/stat.h> | ||
31 | 32 | ||
32 | #define np_free(ptr) { if(ptr) { free(ptr); ptr = NULL; } } | 33 | #define np_free(ptr) { if(ptr) { free(ptr); ptr = NULL; } } |
33 | 34 | ||