V7M/src/libF77/d_cnjg.c

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

#include "complex"

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