]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/libf2c/libF77/c_sin.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / libf2c / libF77 / c_sin.c
1 #include "f2c.h"
2
3 #undef abs
4 #include "math.h"
5
6 void
7 c_sin (complex * r, complex * z)
8 {
9   double zi = z->i, zr = z->r;
10   r->r = sin (zr) * cosh (zi);
11   r->i = cos (zr) * sinh (zi);
12 }