1: /* time.h 1.1 85/03/13 */ 2: 3: /* 4: * Structure returned by gmtime and localtime calls (see ctime(3)). 5: */ 6: struct tm { 7: int tm_sec; 8: int tm_min; 9: int tm_hour; 10: int tm_mday; 11: int tm_mon; 12: int tm_year; 13: int tm_wday; 14: int tm_yday; 15: int tm_isdst; 16: }; 17: 18: extern struct tm *gmtime(), *localtime(); 19: extern char *asctime(), *ctime();