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

#include <complex.h>

TYPE complex TGFN(cexp)(TYPE complex z)
{
	return z;
}

/*d
The cexp functions compute the complex base-e exponential of z.
d*/

/*r
The cexp functions compute the complex base-e exponential of z.
r*/

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