fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targets
[musl] / src / complex / casinhf.c
1 #include "complex_impl.h"
2
3 float complex casinhf(float complex z)
4 {
5         z = casinf(CMPLXF(-cimagf(z), crealf(z)));
6         return CMPLXF(cimagf(z), -crealf(z));
7 }