diff options
Diffstat (limited to 'sysdeps/libm-ieee754/w_j1l.c')
-rw-r--r-- | sysdeps/libm-ieee754/w_j1l.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/libm-ieee754/w_j1l.c b/sysdeps/libm-ieee754/w_j1l.c index 223ab79cde..49a486cf8e 100644 --- a/sysdeps/libm-ieee754/w_j1l.c +++ b/sysdeps/libm-ieee754/w_j1l.c @@ -26,9 +26,9 @@ static char rcsid[] = "$NetBSD: $"; #include "math_private.h" #ifdef __STDC__ - long double __j1l(long double x) /* wrapper j1l */ + long double j1l(long double x) /* wrapper j1l */ #else - long double __j1l(x) /* wrapper j1l */ + long double j1l(x) /* wrapper j1l */ long double x; #endif { @@ -44,12 +44,11 @@ static char rcsid[] = "$NetBSD: $"; return z; #endif } -weak_alias (__j1l, j1l) #ifdef __STDC__ - long double __y1l(long double x) /* wrapper y1l */ + long double y1l(long double x) /* wrapper y1l */ #else - long double __y1l(x) /* wrapper y1l */ + long double y1l(x) /* wrapper y1l */ long double x; #endif { @@ -73,4 +72,3 @@ weak_alias (__j1l, j1l) return z; #endif } -weak_alias (__y1l, y1l) |