added ability to init lu6 with carriage control (init66_). DLW
[unix-history] / usr / src / usr.bin / f77 / libU77 / loc_.c
CommitLineData
a17473cc
DW
1/*
2char id_loc[] = "@(#)loc_.c 1.1";
3 *
4 * Return the address of the argument.
5 *
6 * calling sequence:
7 * iloc = loc (arg)
8 * where:
9 * iloc will receive the address of arg
10 */
11
12long loc_(arg)
13long *arg;
14{
15 return((long)arg);
16}