blob: 1f942de3654b0a7f4adb61149230815c2f9fac6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#if 0
# 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)
*/
#endif
|