BSD 3 development
[unix-history] / usr / src / cmd / spice / loc.c
CommitLineData
50415747
D
1/* return the address of arg */
2loc_(arg)
3int *arg;
4{
5 return (int) arg;
6}
7/* c program to call library routine times*/
8
9times_ (iarg)
10int *iarg ;
11{
12 times (iarg) ;
13}