aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/c_cos.c
blob: 9e833c168b3bb900a03b0a02718b3fb44e43cfe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "f2c.h"

#ifdef KR_headers
extern double sin(), cos(), sinh(), cosh();

VOID c_cos(resx, z) complex *resx, *z;
#else
#undef abs
#include <math.h>

void c_cos(complex *resx, complex *z)
#endif
{
complex res;

res.r = cos(z->r) * cosh(z->i);
res.i = - sin(z->r) * sinh(z->i);

resx->r = res.r;
resx->i = res.i;
}