Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
complex
/
ctanf.c
blob: d7ed316be2d5fd189887eb68d922c33adaa738f0 [
file
] [
log
] [
blame
]
#include
"libm.h"
float
complex ctanf
(
float
complex z
)
{
z
=
ctanhf
(
CMPLXF
(-
cimagf
(
z
),
crealf
(
z
)));
return
CMPLXF
(
cimagf
(
z
),
-
crealf
(
z
));
}