diff options
Diffstat (limited to 'plugins/common.h')
-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 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__) | ||
196 | static inline float floorf (float x) { return floor(x); } | ||
197 | #endif | ||
198 | |||
194 | enum { | 199 | enum { |
195 | STATE_OK, | 200 | STATE_OK, |
196 | STATE_WARNING, | 201 | STATE_WARNING, |