Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
src
/
complex
/
catanhf.c
blob: b0505f6054053cd5797ee91cf818e4a75cd8045a [
file
] [
log
] [
blame
]
#include
"complex_impl.h"
float
complex catanhf
(
float
complex z
)
{
z
=
catanf
(
CMPLXF
(-
cimagf
(
z
),
crealf
(
z
)));
return
CMPLXF
(
cimagf
(
z
),
-
crealf
(
z
));
}