blob: d0e273c910bb47d4f5f13ac56aa64f5ec8a3250a (
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 "../complex/csqrt.c"
#include "_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)
*/
|