diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-08 05:09:40 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-08 05:09:40 +0000 |
commit | a9f992033fc32c0cca125e80d3d96aacfc78b802 (patch) | |
tree | bad34ea7077716b4b074ee66ba3259097a4f3108 /plugins/utils.h | |
parent | 65ca899d2c98b6342783922a5709c4b61e6b2b1f (diff) | |
download | monitoring-plugins-a9f992033fc32c0cca125e80d3d96aacfc78b802.tar.gz |
fix a variety of compiler warnings about qualifier discards and other pedantic stuff
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@663 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils.h')
-rw-r--r-- | plugins/utils.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/plugins/utils.h b/plugins/utils.h index 9dc2654c..a852e86a 100644 --- a/plugins/utils.h +++ b/plugins/utils.h @@ -22,10 +22,10 @@ void die (int result, const char *fmt, ...) __attribute__((noreturn)); #ifdef LOCAL_TIMEOUT_ALARM_HANDLER extern unsigned int timeout_interval; -RETSIGTYPE timeout_alarm_handler (int) __attribute__((noreturn)); +RETSIGTYPE timeout_alarm_handler (int); #else unsigned int timeout_interval = DEFAULT_SOCKET_TIMEOUT; -extern RETSIGTYPE timeout_alarm_handler (int) __attribute__((noreturn)); +extern RETSIGTYPE timeout_alarm_handler (int); #endif time_t start_time, end_time; @@ -64,9 +64,7 @@ double delta_time (struct timeval tv); void strip (char *buffer); char *strscpy (char *dest, const char *src); -char *strscat (char *dest, const char *src); char *strnl (char *str); -char *ssprintf (char *str, const char *fmt, ...); /* deprecate for asprintf */ char *strpcpy (char *dest, const char *src, const char *str); char *strpcat (char *dest, const char *src, const char *str); @@ -74,9 +72,9 @@ int max_state (int a, int b); void usage (char *msg) __attribute__((noreturn)); void usage2(char *msg, char *arg) __attribute__((noreturn)); -void usage3(char *msg, char arg) __attribute__((noreturn)); +void usage3(char *msg, int arg) __attribute__((noreturn)); -char *state_text (int result); +const char *state_text (int result); #define max(a,b) (((a)>(b))?(a):(b)) |