in pipe2, use pipe() rather than __syscall(SYS_pipe, ...) for fallback
[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 }