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/e_remainder.c')
-rw-r--r--newlib/libm/mathfp/e_remainder.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/newlib/libm/mathfp/e_remainder.c b/newlib/libm/mathfp/e_remainder.c
index a80706cc1..52012b3d6 100644
--- a/newlib/libm/mathfp/e_remainder.c
+++ b/newlib/libm/mathfp/e_remainder.c
@@ -50,19 +50,10 @@ PORTABILITY
#ifndef _DOUBLE_IS_32BITS
-#ifdef __STDC__
static const double zero = 0.0;
-#else
-static double zero = 0.0;
-#endif
-#ifdef __STDC__
double remainder(double x, double p)
-#else
- double remainder(x,p)
- double x,p;
-#endif
{
__int32_t hx,hp;
__uint32_t sx,lx,lp;