1 #ifndef __timeb_defined
2 #define __timeb_defined 1
3 
4 #include <bits/types/time_t.h>
5 
6 /* Structure returned by the 'ftime' function.  */
7 struct timeb
8   {
9     time_t time;		/* Seconds since epoch, as from 'time'.  */
10     unsigned short int millitm;	/* Additional milliseconds.  */
11     short int timezone;		/* Minutes west of GMT.  */
12     short int dstflag;		/* Nonzero if Daylight Savings Time used.  */
13   };
14 
15 #endif
16