pdp11v/usr/src/lib/lib2/time.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)time.c	1.1	*/

long	_time;

long
time(tloc)
long *tloc; {

	if (tloc)
		*tloc = _time;
	return (_time);
}