summaryrefslogtreecommitdiff
path: root/src/complex/cpow.c
blob: ab95c40b261502b4d4083c0c11c78bc634913263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# define TGSOURCE "complex/cpow.c"
#include "_tgmath.h"

#include <complex.h>

TYPE complex TGFN(cpow)(TYPE complex x, TYPE complex y)
{
	return x * y;
}

/*d
The cpow functions compute the complex power function x y , with a branch cut for the
first parameter along the negative real axis.
d*/

/*r
The cpow functions return the complex power function value.
r*/
/*
STDC(199901)
LINK(m)
*/