/* sys/timeb.h (emx+gcc) */

#if !defined (_SYS_TIMEB_H)
#define _SYS_TIMEB_H

#if defined (__cplusplus)
extern "C" {
#endif

#if !defined (_TIME_T)
#define _TIME_T
typedef unsigned long time_t;
#endif

struct timeb
{
  time_t   time;
  unsigned millitm;
  int      timezone;
  int      dstflag;
};

void ftime (struct timeb *ptr);

#if defined (__cplusplus)
}
#endif

#endif /* !defined (_SYS_TIMEB_H) */
