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:
authorCorinna Vinschen <corinna@vinschen.de>2010-03-05 11:55:16 +0300
committerCorinna Vinschen <corinna@vinschen.de>2010-03-05 11:55:16 +0300
commitb73e65bb44e2bac2b3e0a7a2a9f596ccb47e05a5 (patch)
treeea53356762fe9c443a6aac111f4477427ccf6888 /newlib/libm
parent56fbdfab68cf4577781e8623fe4c6d13ca7ec727 (diff)
* libm/math/ef_sqrt.c: Delete unused variable sign.
* libc/stdlib/getenv.c: Delete "char *_findenv_r ();", as is not a proper prototype, and is properly prototyped in stdlib.h, anyway. * libc/stdlib/getenv_r.c: Ditto. * libc/search/hash.c: Add _DEFUN to __hash_open() declaration; add #define __DBINTERFACE_PRIVATE to activate prototypes from db_local.h. * libc/search/db_local.h: Correct __hash_open() prototype. * libc/sys/linux/cmath/math_private.h: Eliminate compiler warnings: Remove #define INFINITY (redefines from math.h); remove #define __isnanf and #define __isinff isinff.
Diffstat (limited to 'newlib/libm')
-rw-r--r--newlib/libm/math/ef_sqrt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/newlib/libm/math/ef_sqrt.c b/newlib/libm/math/ef_sqrt.c
index 17dab9311..80e7f360e 100644
--- a/newlib/libm/math/ef_sqrt.c
+++ b/newlib/libm/math/ef_sqrt.c
@@ -29,7 +29,6 @@ static float one = 1.0, tiny=1.0e-30;
#endif
{
float z;
- __int32_t sign = (__int32_t)0x80000000;
__uint32_t r,hx;
__int32_t ix,s,q,m,t,i;