1*2517Sdlw /* 2*2517Sdlw char id_time[] = "@(#)time_.c 1.1"; 3*2517Sdlw * 4*2517Sdlw * return the current time as an integer 5*2517Sdlw * 6*2517Sdlw * calling sequence: 7*2517Sdlw * integer time 8*2517Sdlw * i = time() 9*2517Sdlw * where: 10*2517Sdlw * i will receive the current GMT in seconds. 11*2517Sdlw */ 12*2517Sdlw 13*2517Sdlw long time(); 14*2517Sdlw 15*2517Sdlw long time_() 16*2517Sdlw { 17*2517Sdlw return(time(0)); 18*2517Sdlw } 19