BSD 3 development
authorR. Dowell <x-rd@ucbvax.Berkeley.EDU>
Tue, 18 Sep 1979 09:13:21 +0000 (01:13 -0800)
committerR. Dowell <x-rd@ucbvax.Berkeley.EDU>
Tue, 18 Sep 1979 09:13:21 +0000 (01:13 -0800)
Work on file usr/src/cmd/spice/loc.c

Co-Authored-By: Rich Newton <arn@ucbvax.Berkeley.EDU>
Co-Authored-By: Don O. Pederson <dop@ucbvax.Berkeley.EDU>
Synthesized-from: 3bsd

usr/src/cmd/spice/loc.c [new file with mode: 0755]

diff --git a/usr/src/cmd/spice/loc.c b/usr/src/cmd/spice/loc.c
new file mode 100755 (executable)
index 0000000..4dc2685
--- /dev/null
@@ -0,0 +1,13 @@
+/* return the address of arg */
+loc_(arg)
+int *arg;
+{
+     return (int) arg;
+}
+/* c program to call library routine times*/
+
+times_ (iarg)
+int *iarg ;
+{
+    times (iarg) ;
+}