date and time created 83/01/21 11:17:22 by dlw
authorDavid Wasley <dlw@ucbvax.Berkeley.EDU>
Sat, 22 Jan 1983 03:17:22 +0000 (19:17 -0800)
committerDavid Wasley <dlw@ucbvax.Berkeley.EDU>
Sat, 22 Jan 1983 03:17:22 +0000 (19:17 -0800)
SCCS-vsn: usr.bin/f77/libF77/r_cnjg.c 1.1

usr/src/usr.bin/f77/libF77/r_cnjg.c [new file with mode: 0644]

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 (file)
index 0000000..3c7962b
--- /dev/null
@@ -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;
+}