HardenedBSD/contrib/libf2c/libF77/c_sin.c

13 lines
183 B
C
Raw Normal View History

1999-09-18 12:51:31 +02:00
#include "f2c.h"
#undef abs
1999-09-19 07:59:11 +02:00
#include "math.h"
1999-09-18 12:51:31 +02:00
2003-07-11 05:42:19 +02:00
void
c_sin (complex * r, complex * z)
1999-09-18 12:51:31 +02:00
{
2003-07-11 05:42:19 +02:00
double zi = z->i, zr = z->r;
r->r = sin (zr) * cosh (zi);
r->i = cos (zr) * sinh (zi);
}