add creal/cimag macros in complex.h (and use them in the functions defs)
[musl] / src / complex / csqrtl.c
1 #include "libm.h"
2
3 //FIXME
4 long double complex csqrtl(long double complex z)
5 {
6         return csqrt(z);
7 }