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

#include <complex.h>

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

/*d
The clog functions compute the complex natural (base-e) logarithm of z, with a branch
cut along the negative real axis.
d*/

/*r
The clog functions return the complex natural logarithm value, in the range of a strip
mathematically unbounded along the real axis and in the interval [−i π , +i π ] along the
imaginary axis.
r*/

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