more stack for boot
[minix.git] / include / sys / timeb.h
blobb78d109830a788009459ce01bfc797d9119aacf4
1 #ifndef _SYS__TIMEB_H
2 #define _SYS__TIMEB_H
4 #include <time.h>
6 struct timeb
8 time_t time; /* Seconds since epoch, as from `time'. */
9 unsigned short int millitm; /* Additional milliseconds. */
10 short int timezone; /* Minutes west of GMT. */
11 short int dstflag; /* Nonzero if Daylight Savings Time used. */
14 /* Fill in TIMEBUF with information about the current time. */
16 _PROTOTYPE( int ftime, (struct timeb *__timebuf));
18 #endif /* _SYS__TIMEB_H */