extend cmath (some of the functions are dummy)
[libm] / src / cmath / cpowl.c
1 #include "libm.h"
2
3 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
4 long double complex cpowl(long double complex z, long double complex c)
5 {
6         return cpow(z, c);
7 }
8 #else
9 long double complex cpowl(long double complex z, long double complex c)
10 {
11         return cexpl(c * clogl(z));
12 }
13 #endif