summaryrefslogtreecommitdiffstats
path: root/lib/libF77/c_sin.c
blob: 15acccc59af84b2bc2ca17a4257984cb942281eb (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_sin(r, z) complex *r, *z;
#else
#undef abs
#include "math.h"

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