projects
/
platform
/
upstream
/
linaro-glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8cbdd64
)
Fix a typo in the function name.
author
Ulrich Drepper
<drepper@redhat.com>
Mon, 12 Mar 2001 18:22:49 +0000
(18:22 +0000)
committer
Ulrich Drepper
<drepper@redhat.com>
Mon, 12 Mar 2001 18:22:49 +0000
(18:22 +0000)
sysdeps/ieee754/dbl-64/e_pow.c
patch
|
blob
|
history
diff --git
a/sysdeps/ieee754/dbl-64/e_pow.c
b/sysdeps/ieee754/dbl-64/e_pow.c
index
4f26344
..
cd6f27f
100644
(file)
--- 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_
u
pow(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;