change underlying type of clock_t to be uniform and match ABI
[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 }