Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
5b546faa67544af395d6407553762b37e9711157
/
.
/
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
));
}