summaryrefslogtreecommitdiff
path: root/src/complex/cimag.c
blob: 3284d4cac9611382dee22226ca8fc145735b005e (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 "cimag.c"
#include "nonstd/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)
*/