date and time created 81/02/19 09:23:10 by dlw
[unix-history] / usr / src / usr.bin / f77 / libU77 / getuid_.c
CommitLineData
7740b891
DW
1/*
2char id_getuid[] = "@(#)getuid_.c 1.1";
3 *
4 * get user id
5 *
6 * calling sequence:
7 * integer getuid, uid
8 * uid = getuid()
9 * where:
10 * uid will be the real user id
11 */
12
13long getuid_()
14{
15 return((long)getuid());
16}