summaryrefslogtreecommitdiff
path: root/src/complex/cexp.c
blob: ff74c58d04e31e18516dc95a96083936863cac52 (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 0.0;
}

/*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)
*/