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:
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