diff options
Diffstat (limited to 'math/w_j1.c')
-rw-r--r-- | math/w_j1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_j1.c b/math/w_j1.c index 1665501f44..37c6d1f4b5 100644 --- a/math/w_j1.c +++ b/math/w_j1.c @@ -33,7 +33,7 @@ j1 (double x) return __ieee754_j1 (x); } #ifdef NO_LONG_DOUBLE -strong_alias (j1, j1l) +weak_alias (j1, j1l) #endif @@ -64,5 +64,5 @@ y1 (double x) return __ieee754_y1 (x); } #ifdef NO_LONG_DOUBLE -strong_alias (y1, y1l) +weak_alias (y1, y1l) #endif |