make getservby*_r return error code rather than -1 (and using errno)
[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 }