Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
754f66afb76f59bb4c43f303fb9406a3841a448f
/
.
/
src
/
complex
/
catanhf.c
blob: 4a5eb04079b9de3af8d3c814a53010fb52618828 [
file
] [
log
] [
blame
]
#include
"libm.h"
float
complex catanhf
(
float
complex z
)
{
z
=
catanf
(
CMPLXF
(-
cimagf
(
z
),
crealf
(
z
)));
return
CMPLXF
(
cimagf
(
z
),
-
crealf
(
z
));
}