Bell 32V development
[unix-history] / usr / src / libF77 / r_cnjg.c
CommitLineData
0c9e74ab
TL
1#include "complex"
2
3r_cnjg(r, z)
4complex *r, *z;
5{
6r->real = z->real;
7r->imag = - z->imag;
8}