summaryrefslogtreecommitdiffstats
path: root/contrib/libf2c/libF77/c_cos.c
blob: 549953dc65620fb47188b4422eb78c32b39c9680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "f2c.h"

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

VOID c_cos(r, z) complex *r, *z;
#else
#undef abs
#include "math.h"

void c_cos(complex *r, complex *z)
#endif
{
	double zi = z->i, zr = z->r;
	r->r =   cos(zr) * cosh(zi);
	r->i = - sin(zr) * sinh(zi);
	}
OpenPOWER on IntegriCloud