From 504157477a6071fcf2d4227e17bdebb81ad75d9b Mon Sep 17 00:00:00 2001 From: "R. Dowell" Date: Tue, 18 Sep 1979 01:13:21 -0800 Subject: [PATCH] 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 --- usr/src/cmd/spice/loc.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 usr/src/cmd/spice/loc.c 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) ; +} -- 2.20.1