summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_atanh.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_atanh.c')
-rw-r--r--lib/msun/src/e_atanh.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/lib/msun/src/e_atanh.c b/lib/msun/src/e_atanh.c
index 97a79f0..d838c13 100644
--- a/lib/msun/src/e_atanh.c
+++ b/lib/msun/src/e_atanh.c
@@ -35,24 +35,11 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#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 __ieee754_atanh(double x)
-#else
- double __ieee754_atanh(x)
- double x;
-#endif
+double
+__ieee754_atanh(double x)
{
double t;
int32_t hx,ix;
OpenPOWER on IntegriCloud