1 /* wf_atanh.c -- float version of w_atanh.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
23 float atanhf(float x
) /* wrapper atanhf */
25 float atanhf(x
) /* wrapper atanhf */
30 return __ieee754_atanhf(x
);
34 z
= __ieee754_atanhf(x
);
35 if(_LIB_VERSION
== _IEEE_
|| isnanf(x
)) return z
;
43 exc
.arg1
= exc
.arg2
= (double)x
;
45 if (_LIB_VERSION
== _POSIX_
)
47 else if (!matherr(&exc
)) {
55 exc
.arg1
= exc
.arg2
= (double)x
;
56 exc
.retval
= x
/0.0; /* sign(x)*inf */
57 if (_LIB_VERSION
== _POSIX_
)
59 else if (!matherr(&exc
)) {
65 return (float)exc
.retval
;
71 #ifdef _DOUBLE_IS_32BITS
74 double atanh(double x
)
80 return (double) atanhf((float) x
);
83 #endif /* defined(_DOUBLE_IS_32BITS) */