stdio.h defines BUFSIZ
[unix-history] / usr / src / usr.bin / f77 / libU77 / time_.c
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*
* @(#)time_.c 5.1 %G%
*/
/*
* return the current time as an integer
*
* calling sequence:
* integer time
* i = time()
* where:
* i will receive the current GMT in seconds.
*/
long time();
long time_()
{
return(time(0));
}