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

#include <complex.h>

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

/*d
The ctanh functions compute the complex hyperbolic tangent of z.
d*/

/*r
The ctanh functions return the complex hyperbolic tangent value.
r*/

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