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/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 bfc40dec1..008b5ee0b 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;