summaryrefslogtreecommitdiffstats
path: root/plugins/common.h
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2005-12-07 15:10:27 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2005-12-07 15:10:27 (GMT)
commit7c69ccaee2baba7d1e8347b8b9e1f45a18551a6c (patch)
treeb75006f2ee1b79996b099272460cff5467237fc7 /plugins/common.h
parentec6d0db61c33e65a1c3e414b07638a55022dfbf6 (diff)
downloadmonitoring-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/common.h')
-rw-r--r--plugins/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/common.h b/plugins/common.h
index b4699ce..7438e40 100644
--- a/plugins/common.h
+++ b/plugins/common.h
@@ -191,6 +191,11 @@ enum {
191}; 191};
192#endif 192#endif
193 193
194/* Solaris does not have floorf, but floor works. Should probably be in configure */
195#if defined(__sun) || defined(__sun__)
196static inline float floorf (float x) { return floor(x); }
197#endif
198
194enum { 199enum {
195 STATE_OK, 200 STATE_OK,
196 STATE_WARNING, 201 STATE_WARNING,