gettimeofday() emulation using ftime()

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9830 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-04-04 19:27:46 +00:00
parent be474fc5d0
commit a8dd582c45
1 changed files with 11 additions and 0 deletions

11
osdep/gettimeofday.c Normal file
View File

@ -0,0 +1,11 @@
#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