#include "f2c.h" VOID r_cnjg(complex *r, complex *z) { real zi = z->i; r->r = z->r; r->i = -zi; }