aboutsummaryrefslogtreecommitdiff
path: root/newlib/libm/mathfp/ef_atanh.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/mathfp/ef_atanh.c')
-rw-r--r--newlib/libm/mathfp/ef_atanh.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libm/mathfp/ef_atanh.c b/newlib/libm/mathfp/ef_atanh.c
index bfc40de..008b5ee 100644
--- a/newlib/libm/mathfp/ef_atanh.c
+++ b/newlib/libm/mathfp/ef_atanh.c
@@ -16,24 +16,11 @@
#include "fdlibm.h"
-#ifdef __STDC__
static const float one = 1.0, huge = 1e30;
-#else
-static float one = 1.0, huge = 1e30;
-#endif
-#ifdef __STDC__
static const float zero = 0.0;
-#else
-static float zero = 0.0;
-#endif
-#ifdef __STDC__
float atanhf(float x)
-#else
- float atanhf(x)
- float x;
-#endif
{
float t;
__int32_t hx,ix;