src/solaris/native/common/jdk_util_md.h

Print this page
rev 8725 : 8024854: Basic changes and files to build the class library on AIX
Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, thomas.stuefe@sap.com
Reviewed-by: alanb, prr, sla, chegar, michaelm, mullan

*** 37,46 **** --- 37,50 ---- #define ISNAND(d) isnan(d) #elif defined(__linux__) || defined(_ALLBSD_SOURCE) #include <math.h> #define ISNANF(f) isnanf(f) #define ISNAND(d) isnan(d) + #elif defined(_AIX) + #include <math.h> + #define ISNANF(f) _isnanf(f) + #define ISNAND(d) _isnan(d) #else #error "missing platform-specific definition here" #endif #endif /* JDK_UTIL_MD_H */