diff options
Diffstat (limited to 'libc/sysdeps/ieee754/dbl-64/s_tanh.c')
-rw-r--r-- | libc/sysdeps/ieee754/dbl-64/s_tanh.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libc/sysdeps/ieee754/dbl-64/s_tanh.c b/libc/sysdeps/ieee754/dbl-64/s_tanh.c index 944f96386..63ef4b88a 100644 --- a/libc/sysdeps/ieee754/dbl-64/s_tanh.c +++ b/libc/sysdeps/ieee754/dbl-64/s_tanh.c @@ -41,18 +41,9 @@ static char rcsid[] = "$NetBSD: s_tanh.c,v 1.7 1995/05/10 20:48:22 jtc Exp $"; #include "math.h" #include "math_private.h" -#ifdef __STDC__ static const double one=1.0, two=2.0, tiny = 1.0e-300; -#else -static double one=1.0, two=2.0, tiny = 1.0e-300; -#endif -#ifdef __STDC__ - double __tanh(double x) -#else - double __tanh(x) - double x; -#endif +double __tanh(double x) { double t,z; int32_t jx,ix,lx; |