summaryrefslogtreecommitdiffstats
path: root/lib/libF77/z_sin.c
blob: 577be1d85f905170bff0e6440137f53b50c0327d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "f2c.h"

#ifdef KR_headers
double sin(), cos(), sinh(), cosh();
VOID z_sin(r, z) doublecomplex *r, *z;
#else
#undef abs
#include "math.h"
void z_sin(doublecomplex *r, doublecomplex *z)
#endif
{
	double zr = z->r;
	r->r = sin(zr) * cosh(z->i);
	r->i = cos(zr) * sinh(z->i);
	}
OpenPOWER on IntegriCloud