V7M/src/libF77/r_cnjg.c

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

#include "complex"

r_cnjg(r, z)
complex *r, *z;
{
r->real = z->real;
r->imag = - z->imag;
}