summaryrefslogtreecommitdiff
path: root/src/complex/csqrt.c
blob: edbbd394a2dcbe95386d29d77b7db698f79ad9e1 (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
# define TGSOURCE "csqrt.c"
#include "nonstd/tgmath.h"

#include <complex.h>

TYPE complex TGFN(csqrt)(TYPE complex z)
{
	return 0.0;
}

/*d
The csqrt functions compute the complex square root of z, with a branch cut along the
negative real axis.
d*/

/*r
The csqrt functions return the complex square root value, in the range of the right half-
plane (including the imaginary axis).
r*/

/*
STDC(199901)
LINK(m)
*/