math: new log2f
[musl.git] / src / complex / cacos.c
blobc39d257b44b52a679a4e6efe61a38eef739e5b3e
1 #include "complex_impl.h"
3 // FIXME: Hull et al. "Implementing the complex arcsine and arccosine functions using exception handling" 1997
5 /* acos(z) = pi/2 - asin(z) */
7 double complex cacos(double complex z)
9 z = casin(z);
10 return CMPLX(M_PI_2 - creal(z), -cimag(z));