diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-02-23 18:29:31 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-02-23 18:29:31 +0000 |
commit | d9edc05f47edef645e8b80abdd937820a41d51d4 (patch) | |
tree | 058a6323db40b5d9c085ca5661607e99f25d6cea /newlib | |
parent | a76877e977ff264e44c4d9278920fe511fc73dd4 (diff) | |
download | newlib-d9edc05f47edef645e8b80abdd937820a41d51d4.zip newlib-d9edc05f47edef645e8b80abdd937820a41d51d4.tar.gz newlib-d9edc05f47edef645e8b80abdd937820a41d51d4.tar.bz2 |
2007-02-23 Jeff Johnston <jjohnstn@redhat.com>
* libm/math/w_pow.c: Fix typo in documentation comment.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libm/math/w_pow.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index a1c290e..a2d6a63 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2007-02-23 Jeff Johnston <jjohnstn@redhat.com> + + * libm/math/w_pow.c: Fix typo in documentation comment. + 2007-02-21 Patrick Mansfield <patmans@us.ibm.com> * libc/reent/timer.c: Removed (split into two new files). diff --git a/newlib/libm/math/w_pow.c b/newlib/libm/math/w_pow.c index d54cd3a..7871421 100644 --- a/newlib/libm/math/w_pow.c +++ b/newlib/libm/math/w_pow.c @@ -24,14 +24,14 @@ INDEX ANSI_SYNOPSIS #include <math.h> double pow(double <[x]>, double <[y]>); - float pow(float <[x]>, float <[y]>); + float powf(float <[x]>, float <[y]>); TRAD_SYNOPSIS #include <math.h> double pow(<[x]>, <[y]>); double <[x]>, <[y]>; - float pow(<[x]>, <[y]>); + float powf(<[x]>, <[y]>); float <[x]>, <[y]>; DESCRIPTION |