aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/src/e_powf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_powf.c')
-rw-r--r--lib/msun/src/e_powf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/src/e_powf.c b/lib/msun/src/e_powf.c
index 122da455f740..f5a2c70c7c26 100644
--- a/lib/msun/src/e_powf.c
+++ b/lib/msun/src/e_powf.c
@@ -56,7 +56,7 @@ ivln2_h = 1.4426879883e+00, /* 0x3fb8aa00 =16b 1/ln2*/
ivln2_l = 7.0526075433e-06; /* 0x36eca570 =1/ln2 tail*/
float
-__ieee754_powf(float x, float y)
+powf(float x, float y)
{
float z,ax,z_h,z_l,p_h,p_l;
float y1,t1,t2,r,s,sn,t,u,v,w;
@@ -108,7 +108,7 @@ __ieee754_powf(float x, float y)
if(hy==0x40000000) return x*x; /* y is 2 */
if(hy==0x3f000000) { /* y is 0.5 */
if(hx>=0) /* x >= +0 */
- return __ieee754_sqrtf(x);
+ return sqrtf(x);
}
ax = fabsf(x);