Don't use INTDEF with __ldexpf (bug 14132)

Message ID Pine.LNX.4.64.1410212238030.24064@digraph.polyomino.org.uk
State Committed
Headers

Commit Message

Joseph Myers Oct. 21, 2014, 10:38 p.m. UTC
  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.

2014-10-21  Joseph Myers  <joseph@codesourcery.com>

	[BZ #14132]
	* math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
  

Comments

Roland McGrath Oct. 21, 2014, 10:48 p.m. UTC | #1
Looks fine.
  

Patch

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)