diff options
Diffstat (limited to 'math/w_asinl_compat.c')
-rw-r--r-- | math/w_asinl_compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_asinl_compat.c b/math/w_asinl_compat.c index c9e1a340cc..5f7396d464 100644 --- a/math/w_asinl_compat.c +++ b/math/w_asinl_compat.c @@ -20,6 +20,7 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> +#include <libm-alias-ldouble.h> #if LIBM_SVID_COMPAT @@ -37,5 +38,5 @@ __asinl (long double x) return __ieee754_asinl (x); } -weak_alias (__asinl, asinl) +libm_alias_ldouble (__asin, asin) #endif |