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