iconv: fix missing bounds checking for shift_jis decoding
[musl.git] / src / complex / casinhf.c
blob93d82e5f4f11f8d7c99e8d4963889f4a1401d86f
1 #include "complex_impl.h"
3 float complex casinhf(float complex z)
5 z = casinf(CMPLXF(-cimagf(z), crealf(z)));
6 return CMPLXF(cimagf(z), -crealf(z));