From: David Wasley Date: Sat, 22 Jan 1983 03:17:22 +0000 (-0800) Subject: date and time created 83/01/21 11:17:22 by dlw X-Git-Tag: BSD-4_1c_2-Snapshot-Development~877 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/3fd8a994896828c43d9a782618788121419286f8 date and time created 83/01/21 11:17:22 by dlw SCCS-vsn: usr.bin/f77/libF77/r_cnjg.c 1.1 --- diff --git a/usr/src/usr.bin/f77/libF77/r_cnjg.c b/usr/src/usr.bin/f77/libF77/r_cnjg.c new file mode 100644 index 0000000000..3c7962b063 --- /dev/null +++ b/usr/src/usr.bin/f77/libF77/r_cnjg.c @@ -0,0 +1,12 @@ +/* + * "@(#)r_cnjg.c 1.1" + */ + +#include "complex" + +r_cnjg(r, z) +complex *r, *z; +{ +r->real = z->real; +r->imag = - z->imag; +}