date and time created 81/02/18 21:48:38 by dlw
[unix-history] / usr / src / usr.bin / f77 / libU77 / time_.c
CommitLineData
a2554909
DW
1/*
2char id_time[] = "@(#)time_.c 1.1";
3 *
4 * return the current time as an integer
5 *
6 * calling sequence:
7 * integer time
8 * i = time()
9 * where:
10 * i will receive the current GMT in seconds.
11 */
12
13long time();
14
15long time_()
16{
17 return(time(0));
18}