4.2BSD/usr/src/usr.lib/libF77/c_sin.c

Compare this file to the similar file:
Show the results in this format:

/*
 *	"@(#)c_sin.c	1.1"
 */

#include "complex"

c_sin(r, z)
complex *r, *z;
{
double sin(), cos(), sinh(), cosh();

r->real = sin(z->real) * cosh(z->imag);
r->imag = cos(z->real) * sinh(z->imag);
}