summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_atanhf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_atanhf.c')
-rw-r--r--lib/msun/src/e_atanhf.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/lib/msun/src/e_atanhf.c b/lib/msun/src/e_atanhf.c
index dc55b3b..c7cf3e0 100644
--- a/lib/msun/src/e_atanhf.c
+++ b/lib/msun/src/e_atanhf.c
@@ -20,24 +20,12 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.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 __ieee754_atanhf(float x)
-#else
- float __ieee754_atanhf(x)
- float x;
-#endif
+float
+__ieee754_atanhf(float x)
{
float t;
int32_t hx,ix;
OpenPOWER on IntegriCloud