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/libm | |
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/libm')
-rw-r--r-- | newlib/libm/math/w_pow.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |