minix/include/sys/timeb.h

19 lines
493 B
C
Raw Normal View History

#ifndef _SYS__TIMEB_H
#define _SYS__TIMEB_H
#include <time.h>
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 */