/* * 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 6/7/85 */ /* * 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)); }