1 /* Ported from glibc */
6 int ftime(struct timeb
*timebuf
)
11 if (gettimeofday (&tv
, &tz
) < 0)
14 timebuf
->time
= tv
.tv_sec
;
15 timebuf
->millitm
= (tv
.tv_usec
+ 500) / 1000;
16 if (timebuf
->millitm
== 1000)
21 timebuf
->timezone
= tz
.tz_minuteswest
;
22 timebuf
->dstflag
= tz
.tz_dsttime
;