blob: 92c885701d1bfcc36369648c3095c65ae784f92b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __ISINF_H__
#define __ISINF_H__
/*
* Fix for missing std::isnormal with SOLARIS8/GCC3.2
*/
#if defined (SOLARIS_2_8) && __GNUC__ == 3 && __GNUC_MINOR__ == 2
#include <ieeefp.h>
#define isinf(x) ((fpclass(x) == FP_NINF) || (fpclass(x) == FP_PINF))
#elif defined(__APPLE__) && __GNUC__ == 3
#define isinf(x) __isinf(x)
#endif
#endif /* __ISINF_H__ */
|