BSD 4_3_Reno release
[unix-history] / usr / src / lib / libF77 / r_cnjg.c
CommitLineData
3fd8a994 1/*
0478e9fa
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
95f51977 6 * @(#)r_cnjg.c 5.1 6/7/85
3fd8a994
DW
7 */
8
9#include "complex"
10
11r_cnjg(r, z)
12complex *r, *z;
13{
14r->real = z->real;
15r->imag = - z->imag;
16}