add creal/cimag macros in complex.h (and use them in the functions defs)
[musl] / src / complex / cpowf.c
1 #include "libm.h"
2
3 float complex cpowf(float complex z, float complex c)
4 {
5         return cexpf(c * clogf(z));
6 }