aboutsummaryrefslogtreecommitdiff
path: root/src/complex/cpowf.c
blob: 9ffe222ed94a11cfa2fe8986cbff4112647b9e5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "complex_impl.h"

float complex cpowf(float complex z, float complex c)
{
	return cexpf(c * clogf(z));
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif