summaryrefslogtreecommitdiff
path: root/src/complex/cpow.c
blob: 5e778b1a4fb8128a706b6a0e529c6cfed619e433 (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 "cpow.c"
#include "nonstd/tgmath.h"

#include <complex.h>

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

/*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)
*/