summaryrefslogtreecommitdiff
path: root/src/complex/ccos.c
blob: 5a96236cec06d457f5e9542032caedea14db9694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#if 0

# define TGSOURCE "complex/ccos.c"
#include "_tgmath.h"

#include <complex.h>

TYPE complex TGFN(ccos)(TYPE complex z)
{
	return TGFN(ccosh)(I * z);
}

/*d
The ccos functions compute the complex cosine of z.
d*/

/*r
The ccos functions return the complex cosine value.
r*/

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


#endif