blob: 86c004058f5d76195302af01faecd3240b16ce50 (
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/ccosh.c"
#include "_tgmath.h"
#include <complex.h>
TYPE complex TGFN(ccosh)(TYPE complex z)
{
return 0.0;
}
/*d
The ccosh functions compute the complex hyperbolic cosine of z.
d*/
/*r
The ccosh functions return the complex hyperbolic cosine value.
r*/
/*
STDC(199901)
LINK(m)
*/
|