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