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/mathfp/sf_pow.c')
-rw-r--r--newlib/libm/mathfp/sf_pow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libm/mathfp/sf_pow.c b/newlib/libm/mathfp/sf_pow.c
index 7f40186da..932e75dbb 100644
--- a/newlib/libm/mathfp/sf_pow.c
+++ b/newlib/libm/mathfp/sf_pow.c
@@ -6,8 +6,8 @@
float powf (float x, float y)
{
- float d, t, r = 1.0;
- int n, k, sign = 0, exponent_is_even_int = 0;
+ float d, k, t, r = 1.0;
+ int n, sign, exponent_is_even_int = 0;
__int32_t px;
GET_FLOAT_WORD (px, x);