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