diff options
Diffstat (limited to 'lib/libm/src/e_sqrt.c')
| -rw-r--r-- | lib/libm/src/e_sqrt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/src/e_sqrt.c b/lib/libm/src/e_sqrt.c index 4cf344e064a..05355a33291 100644 --- a/lib/libm/src/e_sqrt.c +++ b/lib/libm/src/e_sqrt.c @@ -14,7 +14,7 @@ static char rcsid[] = "$NetBSD: e_sqrt.c,v 1.8 1995/05/10 20:46:17 jtc Exp $"; #endif -/* __ieee754_sqrt(x) +/* sqrt(x) * Return correctly rounded sqrt. * ------------------------------------------ * | Use the hardware sqrt if you have one | @@ -90,7 +90,7 @@ static char rcsid[] = "$NetBSD: e_sqrt.c,v 1.8 1995/05/10 20:46:17 jtc Exp $"; static const double one = 1.0, tiny=1.0e-300; double -__ieee754_sqrt(double x) +sqrt(double x) { double z; int32_t sign = (int)0x80000000; |
