Blame sysdeps/i386/fpu/w_sqrt.c

Packit 6c4009
/* The inline __ieee754_sqrt is not correctly rounding; it's OK for
Packit 6c4009
   most internal uses in glibc, but not for sqrt itself.  */
Packit 6c4009
#define NO_MATH_REDIRECT
Packit 6c4009
#define __ieee754_sqrt __avoid_ieee754_sqrt
Packit 6c4009
#include <math.h>
Packit 6c4009
#include <math_private.h>
Packit 6c4009
#undef __ieee754_sqrt
Packit 6c4009
extern double __ieee754_sqrt (double);
Packit 6c4009
#include <math-type-macros-double.h>
Packit 6c4009
#include <w_sqrt_template.c>