Fix ldbl-128ibm asinhl inaccuracy (bug 18020).
[glibc.git] / sysdeps / i386 / fpu / w_sqrt.c
blob19b5074179ab4cfcf9af0af5a46c45cb4e769ee2
1 /* The inline __ieee754_sqrt is not correctly rounding; it's OK for
2 most internal uses in glibc, but not for sqrt itself. */
3 #define __ieee754_sqrt __avoid_ieee754_sqrt
4 #include <math.h>
5 #include <math_private.h>
6 #undef __ieee754_sqrt
7 extern double __ieee754_sqrt (double);
8 #include <math/w_sqrt.c>