1234567891011121314151617181920212223242526272829303132 |
- #include "math.h"
- #include "math_private.h"
- double
- sqrt (double x)
- {
- #if defined(__UCLIBC_HAS_FENV__)
- if (__builtin_expect (isless (x, 0.0), 0) && _LIB_VERSION != _IEEE_)
- return __kernel_standard (x, x, 26);
- #endif
- return __ieee754_sqrt (x);
- }
- libm_hidden_def(sqrt)
|