summaryrefslogtreecommitdiff
path: root/src/complex/cimag.c
blob: 414ecdba119eabb3f494847dcc8909c82d8971c3 (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 "../complex/cimag.c"
#include "_tgmath.h"

#include <complex.h>

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

/*d
The cimag functions compute the imaginary part of z. 164)
d*/

/*r
The cimag functions return the imaginary part value (as a real).
r*/

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