#ifndef _SYS__TIMEB_H #define _SYS__TIMEB_H #include struct timeb { time_t time; /* Seconds since epoch, as from `time'. */ unsigned short int millitm; /* Additional milliseconds. */ short int timezone; /* Minutes west of GMT. */ short int dstflag; /* Nonzero if Daylight Savings Time used. */ }; /* Fill in TIMEBUF with information about the current time. */ _PROTOTYPE( int ftime, (struct timeb *__timebuf)); #endif /* _SYS__TIMEB_H */