2 /* @(#)s_finite.c 5.1 93/09/24 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunPro, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
15 * finite(x) returns 1 is x is finite, else 0;
21 #ifndef _DOUBLE_IS_32BITS
32 return (int)((__uint32_t
)((hx
&0x7fffffff)-0x7ff00000)>>31);
35 #endif /* _DOUBLE_IS_32BITS */