diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-10-21 23:11:49 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-10-21 23:11:49 +0000 |
commit | a13d0d745ca3ea5e80506db7de0498d74d44a5b7 (patch) | |
tree | 7d02ec708e78ad9abac32cafeee41ef8476fb3b2 /math/s_ldexpf.c | |
parent | f05e73f660d5cc3a72b46047c829ccf5e096c88b (diff) | |
download | glibc-a13d0d745ca3ea5e80506db7de0498d74d44a5b7.zip glibc-a13d0d745ca3ea5e80506db7de0498d74d44a5b7.tar.gz glibc-a13d0d745ca3ea5e80506db7de0498d74d44a5b7.tar.bz2 |
Don't use INTDEF with __ldexpf (bug 14132).
Continuing the removal of the obsolete INTDEF / INTUSE mechanism, this
patch removes the use of INTDEF for __ldexpf. As far as I can tell,
the resulting alias is completely unused.
Tested for x86_64 that stripped installed shared libraries are
unchanged by this patch.
[BZ #14132]
* math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
Diffstat (limited to 'math/s_ldexpf.c')
-rw-r--r-- | math/s_ldexpf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/math/s_ldexpf.c b/math/s_ldexpf.c index b105e29..bd94677 100644 --- a/math/s_ldexpf.c +++ b/math/s_ldexpf.c @@ -28,5 +28,4 @@ float __ldexpf(float value, int exp) if(!__finitef(value)||value==(float)0.0) __set_errno (ERANGE); return value; } -INTDEF(__ldexpf) weak_alias (__ldexpf, ldexpf) |