diff options
Diffstat (limited to 'math/w_acosh_compat.c')
-rw-r--r-- | math/w_acosh_compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/w_acosh_compat.c b/math/w_acosh_compat.c index 31251ce760..f6d298e17b 100644 --- a/math/w_acosh_compat.c +++ b/math/w_acosh_compat.c @@ -21,6 +21,7 @@ #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT /* wrapper acosh */ double __acosh (double x) @@ -32,7 +33,8 @@ __acosh (double x) return __ieee754_acosh (x); } weak_alias (__acosh, acosh) -#ifdef NO_LONG_DOUBLE +# ifdef NO_LONG_DOUBLE strong_alias (__acosh, __acoshl) weak_alias (__acosh, acoshl) +# endif #endif |