fix AS-safety of close when aio is in use and fd map is expanded
[musl.git] / src / complex / cproj.c
blobd2b8f5a972ada4f392d67b9967415092264a661f
1 #include "complex_impl.h"
3 double complex cproj(double complex z)
5 if (isinf(creal(z)) || isinf(cimag(z)))
6 return CMPLX(INFINITY, copysign(0.0, cimag(z)));
7 return z;