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