mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
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.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2014-10-21 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
[BZ #14132]
|
||||||
|
* math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
|
||||||
|
|
||||||
2014-10-21 Roland McGrath <roland@hack.frob.com>
|
2014-10-21 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
* nptl/version.c (__nptl_main): Call __libc_write, not __write.
|
* nptl/version.c (__nptl_main): Call __libc_write, not __write.
|
||||||
|
@ -28,5 +28,4 @@ float __ldexpf(float value, int exp)
|
|||||||
if(!__finitef(value)||value==(float)0.0) __set_errno (ERANGE);
|
if(!__finitef(value)||value==(float)0.0) __set_errno (ERANGE);
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
INTDEF(__ldexpf)
|
|
||||||
weak_alias (__ldexpf, ldexpf)
|
weak_alias (__ldexpf, ldexpf)
|
||||||
|
Reference in New Issue
Block a user