Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
complex
/
cacosh.c
blob: 8c68cb01fd6039eafaa856a7f3130a425b7504f6 [
file
] [
log
] [
blame
]
#include
"libm.h"
/* acosh(z) = i acos(z) */
double
complex cacosh
(
double
complex z
)
{
z
=
cacos
(
z
);
return
CMPLX
(-
cimag
(
z
),
creal
(
z
));
}