diff options
Diffstat (limited to 'libm/s_asinh.c')
-rw-r--r-- | libm/s_asinh.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/libm/s_asinh.c b/libm/s_asinh.c index efdee84a6..7c79d6828 100644 --- a/libm/s_asinh.c +++ b/libm/s_asinh.c @@ -1,4 +1,3 @@ -/* @(#)s_asinh.c 5.1 93/09/24 */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. @@ -10,10 +9,6 @@ * ==================================================== */ -#if defined(LIBM_SCCS) && !defined(lint) -static char rcsid[] = "$NetBSD: s_asinh.c,v 1.9 1995/05/12 04:57:37 jtc Exp $"; -#endif - /* asinh(x) * Method : * Based on @@ -28,22 +23,12 @@ static char rcsid[] = "$NetBSD: s_asinh.c,v 1.9 1995/05/12 04:57:37 jtc Exp $"; #include "math.h" #include "math_private.h" - -#ifdef __STDC__ static const double -#else -static double -#endif one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */ huge= 1.00000000000000000000e+300; -#ifdef __STDC__ - double asinh(double x) -#else - double asinh(x) - double x; -#endif +double asinh(double x) { double t,w; int32_t hx,ix; |