aboutsummaryrefslogtreecommitdiff
path: root/newlib/libm/mathfp/e_atanh.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/mathfp/e_atanh.c')
-rw-r--r--newlib/libm/mathfp/e_atanh.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libm/mathfp/e_atanh.c b/newlib/libm/mathfp/e_atanh.c
index 072c446..b1c233e 100644
--- a/newlib/libm/mathfp/e_atanh.c
+++ b/newlib/libm/mathfp/e_atanh.c
@@ -90,24 +90,11 @@ QUICKREF
#ifndef _DOUBLE_IS_32BITS
-#ifdef __STDC__
static const double one = 1.0, huge = 1e300;
-#else
-static double one = 1.0, huge = 1e300;
-#endif
-#ifdef __STDC__
static const double zero = 0.0;
-#else
-static double zero = 0.0;
-#endif
-#ifdef __STDC__
double atanh(double x)
-#else
- double atanh(x)
- double x;
-#endif
{
double t;
__int32_t hx,ix;