Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2007-02-23 21:29:31 +0300
committerJeff Johnston <jjohnstn@redhat.com>2007-02-23 21:29:31 +0300
commitd9edc05f47edef645e8b80abdd937820a41d51d4 (patch)
tree058a6323db40b5d9c085ca5661607e99f25d6cea /newlib/libm
parenta76877e977ff264e44c4d9278920fe511fc73dd4 (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libm/math/w_pow.c b/newlib/libm/math/w_pow.c
index d54cd3adb..787142100 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