/* ftime.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */

#include <sys/emx.h>
#include <sys/timeb.h>
#include <time.h>

void ftime (struct timeb *ptr)
{
  if (!_tzset_flag) tzset ();
  __ftime (ptr);
  ptr->time += timezone;
  ptr->dstflag = 0; /* daylight && _dst (&tm); */
  ptr->timezone = timezone / 60;
}
