Fixed imagined bug in subject pattern match about
[unix-history] / .ref-BSD-3 / usr / src / libF77 / r_cnjg.c
CommitLineData
0ee0e326
BJ
1#include "complex"
2
3r_cnjg(r, z)
4complex *r, *z;
5{
6r->real = z->real;
7r->imag = - z->imag;
8}