]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/libf2c/libF77/d_cnjg.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / libf2c / libF77 / d_cnjg.c
1 #include "f2c.h"
2
3 void
4 d_cnjg (doublecomplex * r, doublecomplex * z)
5 {
6   doublereal zi = z->i;
7   r->r = z->r;
8   r->i = -zi;
9 }