diff options
Diffstat (limited to 'math/w_j0.c')
-rw-r--r-- | math/w_j0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_j0.c b/math/w_j0.c index f7d4f2b..92a8345 100644 --- a/math/w_j0.c +++ b/math/w_j0.c @@ -33,7 +33,7 @@ j0 (double x) return __ieee754_j0 (x); } #ifdef NO_LONG_DOUBLE -strong_alias (j0, j0l) +weak_alias (j0, j0l) #endif @@ -64,5 +64,5 @@ y0 (double x) return __ieee754_y0 (x); } #ifdef NO_LONG_DOUBLE -strong_alias (y0, y0l) +weak_alias (y0, y0l) #endif |