diff options
Diffstat (limited to 'math/w_j1l_compat.c')
-rw-r--r-- | math/w_j1l_compat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/w_j1l_compat.c b/math/w_j1l_compat.c index c3acfdfe76..d3e9681ba4 100644 --- a/math/w_j1l_compat.c +++ b/math/w_j1l_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 @@ -34,7 +35,7 @@ __j1l (long double x) return __ieee754_j1l (x); } -weak_alias (__j1l, j1l) +libm_alias_ldouble (__j1, j1) /* wrapper y1l */ @@ -63,5 +64,5 @@ __y1l (long double x) return __ieee754_y1l (x); } -weak_alias (__y1l, y1l) +libm_alias_ldouble (__y1, y1) #endif |