]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/contrib/libf2c/libF77/z_sin.c
Clone Kip's Xen on stable/6 tree so that I can work on improving FreeBSD/amd64
[FreeBSD/FreeBSD.git] / 6 / contrib / libf2c / libF77 / z_sin.c
1 #include "f2c.h"
2
3 #undef abs
4 #include "math.h"
5 void
6 z_sin (doublecomplex * r, doublecomplex * z)
7 {
8   double zi = z->i, zr = z->r;
9   r->r = sin (zr) * cosh (zi);
10   r->i = cos (zr) * sinh (zi);
11 }