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