Mercurial > mplayer.hg
view osdep/gettimeofday.c @ 12114:83965b667c12
This was discussed a long time ago but some reason never done. Anyway
the gui option is highly broken (prevents running non-gui) and not
useful. So now it's finally deprecated.
author | rfelker |
---|---|
date | Sat, 03 Apr 2004 17:14:07 +0000 |
parents | 5c639ec8c39e |
children | 08cac43f1e38 |
line wrap: on
line source
#include "../config.h" #ifndef HAVE_GETTIMEOFDAY #include <sys/time.h> #include <sys/timeb.h> void gettimeofday(struct timeval* t,void* timezone) { struct timeb timebuffer; ftime( &timebuffer ); t->tv_sec=timebuffer.time; t->tv_usec=1000*timebuffer.millitm; } #endif