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/s_signif.c')
-rw-r--r--newlib/libm/mathfp/s_signif.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/newlib/libm/mathfp/s_signif.c b/newlib/libm/mathfp/s_signif.c
index 76b5f7cb6..0550ba1ba 100644
--- a/newlib/libm/mathfp/s_signif.c
+++ b/newlib/libm/mathfp/s_signif.c
@@ -21,12 +21,7 @@
#ifndef _DOUBLE_IS_32BITS
-#ifdef __STDC__
double significand(double x)
-#else
- double significand(x)
- double x;
-#endif
{
return scalb(x,(double) -ilogb(x));
}