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

#include <complex.h>

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

/*d
The creal functions compute the real part of z. 165)
d*/

/*r
The creal functions return the real part value.
r*/

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