fix getaddrinfo regression with AI_ADDRCONFIG on some configurations
[musl.git] / src / complex / cacoshf.c
blobade01c0907c8322ffcfe0dc084d35f5ec37be246
1 #include "libm.h"
3 float complex cacoshf(float complex z)
5 z = cacosf(z);
6 return CMPLXF(-cimagf(z), crealf(z));