From: Ulrich Drepper Date: Mon, 12 Mar 2001 18:22:49 +0000 (+0000) Subject: Fix a typo in the function name. X-Git-Tag: upstream/2.30~23399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a656848eaa2f9c96ce438eeb3c63e33933c0b2e;p=external%2Fglibc.git Fix a typo in the function name. --- diff --git a/sysdeps/ieee754/dbl-64/e_pow.c b/sysdeps/ieee754/dbl-64/e_pow.c index 4f26344..cd6f27f 100644 --- a/sysdeps/ieee754/dbl-64/e_pow.c +++ b/sysdeps/ieee754/dbl-64/e_pow.c @@ -53,7 +53,7 @@ static int checkint(double x); /* An ultimate power routine. Given two IEEE double machine numbers y,x */ /* it computes the correctly rounded (to nearest) value of X^y. */ /***************************************************************************/ -double __ieee754_upow(double x, double y) { +double __ieee754_pow(double x, double y) { double z,a,aa,error, t,a1,a2,y1,y2; #if 0 double gor=1.0;