summary refs log tree commit diff
path: root/sysdeps/libm-ieee754/w_j0l.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-ieee754/w_j0l.c')
-rw-r--r--sysdeps/libm-ieee754/w_j0l.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/libm-ieee754/w_j0l.c b/sysdeps/libm-ieee754/w_j0l.c
index 7b4144c95e..b74d9ddcff 100644
--- a/sysdeps/libm-ieee754/w_j0l.c
+++ b/sysdeps/libm-ieee754/w_j0l.c
@@ -26,9 +26,9 @@ static char rcsid[] = "$NetBSD: $";
 #include "math_private.h"
 
 #ifdef __STDC__
-	long double __j0l(long double x)		/* wrapper j0l */
+	long double j0l(long double x)		/* wrapper j0l */
 #else
-	long double __j0l(x)				/* wrapper j0 */
+	long double j0l(x)				/* wrapper j0 */
 	long double x;
 #endif
 {
@@ -43,12 +43,11 @@ static char rcsid[] = "$NetBSD: $";
 	    return z;
 #endif
 }
-weak_alias (__j0l, j0l)
 
 #ifdef __STDC__
-	long double __y0l(long double x)		/* wrapper y0l */
+	long double y0l(long double x)		/* wrapper y0l */
 #else
-	long double __y0l(x)				/* wrapper y0 */
+	long double y0l(x)				/* wrapper y0 */
 	long double x;
 #endif
 {
@@ -72,4 +71,3 @@ weak_alias (__j0l, j0l)
 	    return z;
 #endif
 }
-weak_alias (__y0l, y0l)