update mips cancellation-point syscall asm with 7-arg and r25 fixes
[oweals/musl.git] / 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 }