4.2BSD/usr/src/usr.lib/libF77/d_cnjg.c

Compare this file to the similar file:
Show the results in this format:

/*
 *	"@(#)d_cnjg.c	1.1"
 */

#include "complex"

d_cnjg(r, z)
dcomplex *r, *z;
{
r->dreal = z->dreal;
r->dimag = - z->dimag;
}