xref: /original-bsd/usr.bin/f77/libU77/time_.c (revision 6b7db209)
1 /*
2 char 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 
13 long time();
14 
15 long time_()
16 {
17 	return(time(0));
18 }
19