iconv: fix missing bounds checking for shift_jis decoding
[musl.git] / src / complex / cpowf.c
blobf3fd4b7b771bec3368303200823d38233d3a8ebf
1 #include "complex_impl.h"
3 float complex cpowf(float complex z, float complex c)
5 return cexpf(c * clogf(z));