diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-96/e_asinl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-96/e_asinl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-96/e_asinl.c b/sysdeps/ieee754/ldbl-96/e_asinl.c index 71ce0e8791..85982ca158 100644 --- a/sysdeps/ieee754/ldbl-96/e_asinl.c +++ b/sysdeps/ieee754/ldbl-96/e_asinl.c @@ -132,7 +132,7 @@ __ieee754_asinl (long double x) t = w * 0.5; p = t * (pS0 + t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); q = qS0 + t * (qS1 + t * (qS2 + t * (qS3 + t * (qS4 + t)))); - s = __ieee754_sqrtl (t); + s = sqrtl (t); if (ix >= 0x3ffef999) { /* if |x| > 0.975 */ w = p / q; |