2 * isinff(x) returns 1 if x is +-infinity, else 0;
4 * isinf is a <math.h> macro in the C99 standard. It was previously
5 * implemented as isinf and isinff functions by newlib and are still declared
6 * as such in <math.h>. Newlib supplies it here as a function if the user
7 * chooses to use it instead of the C99 macro.
21 return FLT_UWORD_IS_INFINITE(ix
);
24 #ifdef _DOUBLE_IS_32BITS
31 return isinff((float) x
);
34 #endif /* defined(_DOUBLE_IS_32BITS) */