summaryrefslogtreecommitdiffstats
path: root/contrib/libf2c/libF77/d_cnjg.c
blob: c1970a56da9f17a61e8d26bf8942b766d0580267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

 VOID
#ifdef KR_headers
d_cnjg(r, z) doublecomplex *r, *z;
#else
d_cnjg(doublecomplex *r, doublecomplex *z)
#endif
{
	doublereal zi = z->i;
	r->r = z->r;
	r->i = -zi;
	}
OpenPOWER on IntegriCloud