From: R. Dowell Date: Tue, 18 Sep 1979 09:13:21 +0000 (-0800) Subject: BSD 3 development X-Git-Tag: BSD-3~885 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/504157477a6071fcf2d4227e17bdebb81ad75d9b BSD 3 development Work on file usr/src/cmd/spice/loc.c Co-Authored-By: Rich Newton Co-Authored-By: Don O. Pederson Synthesized-from: 3bsd --- diff --git a/usr/src/cmd/spice/loc.c b/usr/src/cmd/spice/loc.c new file mode 100755 index 0000000000..4dc2685a2b --- /dev/null +++ b/usr/src/cmd/spice/loc.c @@ -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) ; +}