+2012-04-27 Mike Frysinger <vapier@gentoo.org>
+
+ * sysdeps/ia64/fpu/s_scalbn.c (__scalbn): Rename from scalbn.
+ Add weak alias from scalbn to __scalbn.
+ * sysdeps/ia64/fpu/s_scalbnf.c (__scalbnf): Rename from scalbnf.
+ Add weak alias from scalbnf to __scalbnf.
+ * sysdeps/ia64/fpu/s_scalbnl.c (__scalbnl): Rename from scalbnl.
+ Add weak alias from scalbnl to __scalbnl.
+
2012-04-27 Mike Frysinger <vapier@gentoo.org>
* sysdeps/ia64/fpu/s_matherrf.c: Delete __STDC__.
double __libm_scalbn(double, int, int);
-double scalbn(double x, int n)
+double __scalbn(double x, int n)
{
#ifdef SIZE_INT_64
#endif
}
+
+weak_alias (__scalbn, scalbn)
float __libm_scalbnf(float, int, int);
-float scalbnf(float x, int n)
+float __scalbnf(float x, int n)
{
#ifdef SIZE_INT_64
#endif
}
+
+weak_alias (__scalbnf, scalbnf)
long double __libm_scalbnl(long double, int, int);
-long double scalbnl(long double x, int n)
+long double __scalbnl(long double x, int n)
{
#ifdef SIZE_INT_64
#endif
}
+
+weak_alias (__scalbnl, scalbnl)