2 * isinf(x) returns 1 if x is infinity, else 0;
4 * Added by Cygnus Support.
9 #ifndef _DOUBLE_IS_32BITS
19 EXTRACT_WORDS(hx
,lx
,x
);
21 hx
|= (__uint32_t
)(lx
|(-lx
))>>31;
23 return 1 - (int)((__uint32_t
)(hx
|(-hx
))>>31);
26 #endif /* _DOUBLE_IS_32BITS */