Search | Google it | Results 1 - 3 of 3 for funcall:__isnan (0.00 seconds) |
114: : (sizeof (x) == sizeof (double)) ? \ 115: __isnan(x) \ 116: : __isnanl(x))
387: #ifdef __isnan 388: #define isnan(__x) __isnan(__x) 389: #else
69: #define isnan(x) \ 70: ((sizeof(x) == sizeof(double)) ? __isnan(x) \ 71: : (sizeof(x) == sizeof(float)) ? __isnanf(x) \