1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00
freebsd/contrib/libf2c/libF77/d_cnjg.c

10 lines
126 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
2003-07-11 03:42:19 +00:00
void
d_cnjg (doublecomplex * r, doublecomplex * z)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
doublereal zi = z->i;
r->r = z->r;
r->i = -zi;
}