1234567891011121314151617181920212223242526272829303132 |
- #include <features.h>
- #undef __USE_EXTERN_INLINES
- #include "math.h"
- #include "math_private.h"
- int __finite(double x)
- {
- u_int32_t hx;
- GET_HIGH_WORD(hx, x);
-
-
- return (hx | 0x800fffff) != 0xffffffff;
- }
- libm_hidden_def(__finite)
|