diff options
author | M. Sean Finney <seanius@users.sourceforge.net> | 2006-09-02 20:41:18 +0000 |
---|---|---|
committer | M. Sean Finney <seanius@users.sourceforge.net> | 2006-09-02 20:41:18 +0000 |
commit | 8efd2d1d907e4741cf979fd123d62965bf9ae3d5 (patch) | |
tree | f51d1a903c2965c43f803ab85d6941a994f0c2e8 /lib/utils_base.h | |
parent | 1efb32375031098a7a5bb94301796567c06829fc (diff) | |
download | monitoring-plugins-8efd2d1d907e4741cf979fd123d62965bf9ae3d5.tar.gz |
- explicitly include utils_base.h from utils.h
- put utils.h inside of an #ifndef/#endif
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1474 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/utils_base.h')
-rw-r--r-- | lib/utils_base.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/utils_base.h b/lib/utils_base.h index ca27f169..113e3043 100644 --- a/lib/utils_base.h +++ b/lib/utils_base.h @@ -1,3 +1,5 @@ +#ifndef _UTILS_BASE_ +#define _UTILS_BASE_ /* Header file for nagios plugins utils_base.c */ /* This file holds header information for thresholds - use this in preference to @@ -35,3 +37,5 @@ int get_status(double, thresholds *); char *np_escaped_string (const char *); void die (int, const char *, ...) __attribute__((noreturn,format(printf, 2, 3))); + +#endif /* _UTILS_BASE_ */ |