#ifndef _TIMEB_
#define _TIMEB_

struct timeb {
    time_t		time;		/* Seconds since the epoch	*/
    unsigned short	millitm;	/* Field not used		*/
    short		timezone;
    short		dstflag;	/* Field not used		*/
};

#endif /* _TIMEB_ */
