fix wide printf forms ignoring width for %lc format specifier
[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 }