mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
156 B
8 lines
156 B
#include "libm.h"
|
|
|
|
/* pow(z, c) = exp(c log(z)), See C99 G.6.4.1 */
|
|
|
|
double complex cpow(double complex z, double complex c)
|
|
{
|
|
return cexp(c * clog(z));
|
|
}
|
|
|