aboutsummaryrefslogtreecommitdiff
path: root/math/w_atanh_template.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_atanh_template.c')
-rw-r--r--math/w_atanh_template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_atanh_template.c b/math/w_atanh_template.c
index d4b2838..1e52825 100644
--- a/math/w_atanh_template.c
+++ b/math/w_atanh_template.c
@@ -29,9 +29,9 @@
FLOAT
M_DECL_FUNC (__atanh) (FLOAT x)
{
- if (__glibc_unlikely (isgreaterequal (M_SUF (fabs) (x), M_LIT (1.0))))
+ if (__glibc_unlikely (isgreaterequal (M_FABS (x), M_LIT (1.0))))
{
- if (M_SUF (fabs) (x) == 1)
+ if (M_FABS (x) == 1)
/* Pole error: atanh(|x|==1). */
__set_errno (ERANGE);
else