1234567891011121314151617181920212223242526272829 |
- #include <features.h>
- #undef __USE_EXTERN_INLINES
- #include "math.h"
- #include "math_private.h"
- double fabs(double x)
- {
- u_int32_t high;
- GET_HIGH_WORD(high,x);
- SET_HIGH_WORD(x,high&0x7fffffff);
- return x;
- }
- libm_hidden_def(fabs)
|