1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-21 15:45:02 +00:00
freebsd/contrib/libf2c/libF77/z_sin.c
2003-07-11 03:42:19 +00:00

12 lines
194 B
C

#include "f2c.h"
#undef abs
#include "math.h"
void
z_sin (doublecomplex * r, doublecomplex * z)
{
double zi = z->i, zr = z->r;
r->r = sin (zr) * cosh (zi);
r->i = cos (zr) * sinh (zi);
}