#ifndef __STDC__ # include "/usr/include/time.h" #else #sccs "@(#)inchead:time.h 1.1" /* Convergent Technologies - System V - May 1983 */ struct tm { /* see ctime(3) */ int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; int tm_year; int tm_wday; int tm_yday; int tm_isdst; }; long time (long *t); char *ctime (long *t); struct tm *localtime (long *c); struct tm *gmtime (long *c); char *asctime (struct tm * t); void tzset (void); extern long timezone; extern int daylight; extern char *tzname[]; #endif /*__STDC__*/