diff options
Diffstat (limited to 'plugins/utils.h')
-rw-r--r-- | plugins/utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/utils.h b/plugins/utils.h index 282f299e..64d4acad 100644 --- a/plugins/utils.h +++ b/plugins/utils.h @@ -78,6 +78,7 @@ void usage3(const char *msg, int arg) __attribute__((noreturn)); const char *state_text (int result); #define max(a,b) (((a)>(b))?(a):(b)) +#define min(a,b) (((a)<(b))?(a):(b)) char *perfdata (const char *label, long int val, |