diff options
Diffstat (limited to 'math/w_exp10l_compat.c')
-rw-r--r-- | math/w_exp10l_compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/w_exp10l_compat.c b/math/w_exp10l_compat.c index 03b7ce9b6b..3d7d66d5af 100644 --- a/math/w_exp10l_compat.c +++ b/math/w_exp10l_compat.c @@ -25,6 +25,7 @@ #include <math_private.h> #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT long double __exp10l (long double x) { @@ -37,7 +38,8 @@ __exp10l (long double x) return z; } weak_alias (__exp10l, exp10l) -#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27) +# if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27) strong_alias (__exp10l, __pow10l) compat_symbol (libm, __pow10l, pow10l, GLIBC_2_1); +# endif #endif |