12517Sdlw /* 2*23051Skre * Copyright (c) 1980 Regents of the University of California. 3*23051Skre * All rights reserved. The Berkeley software License Agreement 4*23051Skre * specifies the terms and conditions for redistribution. 52517Sdlw * 6*23051Skre * @(#)time_.c 5.1 06/07/85 7*23051Skre */ 8*23051Skre 9*23051Skre /* 102517Sdlw * return the current time as an integer 112517Sdlw * 122517Sdlw * calling sequence: 132517Sdlw * integer time 142517Sdlw * i = time() 152517Sdlw * where: 162517Sdlw * i will receive the current GMT in seconds. 172517Sdlw */ 182517Sdlw 192517Sdlw long time(); 202517Sdlw 212517Sdlw long time_() 222517Sdlw { 232517Sdlw return(time(0)); 242517Sdlw } 25