aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/dbl-64/e_cosh.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/dbl-64/e_cosh.c')
-rw-r--r--sysdeps/ieee754/dbl-64/e_cosh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/dbl-64/e_cosh.c b/sysdeps/ieee754/dbl-64/e_cosh.c
index ae2180aa89..6c78a3a4e9 100644
--- a/sysdeps/ieee754/dbl-64/e_cosh.c
+++ b/sysdeps/ieee754/dbl-64/e_cosh.c
@@ -34,6 +34,7 @@
#include <math.h>
#include <math-narrow-eval.h>
#include <math_private.h>
+#include <libm-alias-finite.h>
static const double one = 1.0, half = 0.5, huge = 1.0e300;
@@ -86,4 +87,4 @@ __ieee754_cosh (double x)
/* |x| > overflowthresold, cosh(x) overflow */
return math_narrow_eval (huge * huge);
}
-strong_alias (__ieee754_cosh, __cosh_finite)
+libm_alias_finite (__ieee754_cosh, __cosh)