repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix possible fd leak, unrestored cancellation state on dns socket fail
[musl.git]
/
src
/
complex
/
cacos.c
blob
27c356364c8c6ffe438767352195e791ed03a23f
1
#include
"libm.h"
2
3
// FIXME: Hull et al. "Implementing the complex arcsine and arccosine functions using exception handling" 1997
4
5
/* acos(z) = pi/2 - asin(z) */
6
7
double complex
cacos
(
double complex
z
)
8
{
9
z
=
casin
(
z
);
10
return
CMPLX
(
M_PI_2
-
creal
(
z
), -
cimag
(
z
));
11
}