diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2005-12-07 15:10:27 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2005-12-07 15:10:27 +0000 |
commit | 7c69ccaee2baba7d1e8347b8b9e1f45a18551a6c (patch) | |
tree | b75006f2ee1b79996b099272460cff5467237fc7 /plugins | |
parent | ec6d0db61c33e65a1c3e414b07638a55022dfbf6 (diff) | |
download | monitoring-plugins-7c69ccaee2baba7d1e8347b8b9e1f45a18551a6c.tar.gz |
No floorf on Solaris 9 (Jon Vandegrift - 1374705)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1295 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/common.h b/plugins/common.h index b4699cef..7438e403 100644 --- a/plugins/common.h +++ b/plugins/common.h @@ -191,6 +191,11 @@ enum { }; #endif +/* Solaris does not have floorf, but floor works. Should probably be in configure */ +#if defined(__sun) || defined(__sun__) +static inline float floorf (float x) { return floor(x); } +#endif + enum { STATE_OK, STATE_WARNING, |