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

#include <complex.h>

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

/*d
The csinh functions compute the complex hyperbolic sine of z.
d*/

/*r
The csinh functions return the complex hyperbolic sine value.
r*/

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