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/math/e_sqrt.c')
-rw-r--r--newlib/libm/math/e_sqrt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/math/e_sqrt.c b/newlib/libm/math/e_sqrt.c
index 460125a8f..78fc52417 100644
--- a/newlib/libm/math/e_sqrt.c
+++ b/newlib/libm/math/e_sqrt.c
@@ -99,7 +99,7 @@ static double one = 1.0, tiny=1.0e-300;
#endif
{
double z;
- __int32_t sign = (int)0x80000000;
+ __int32_t sign = 0x80000000;
__uint32_t r,t1,s1,ix1,q1;
__int32_t ix0,s0,q,m,t,i;