diff options
author | Chris Metcalf <cmetcalf@ezchip.com> | 2014-12-22 15:24:17 -0500 |
---|---|---|
committer | Chris Metcalf <cmetcalf@ezchip.com> | 2014-12-22 15:24:17 -0500 |
commit | b638f96a7607a279d5fd9b14fb49e02fa5151b5f (patch) | |
tree | eb07baecbd8db75f948e2d8eea5109ff5fe68ce0 /math/w_j0.c | |
parent | 0dacd7a3b9401f7eb7160cf79231a4573773c5da (diff) | |
download | glibc-b638f96a7607a279d5fd9b14fb49e02fa5151b5f.zip glibc-b638f96a7607a279d5fd9b14fb49e02fa5151b5f.tar.gz glibc-b638f96a7607a279d5fd9b14fb49e02fa5151b5f.tar.bz2 |
Fix namespace conformance issue with Bessel functions.
[BZ #17747]
The y0/y1/yn and j0/j1/jn functions provided a strong_alias
to the "l"-suffixed variants when no long double support is
being compiled. This breaks namespace conformance when the
basename versions conform but the l-suffixed ones don't.
Fixed by making them weak aliases instead.
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 |