mirror of
https://github.com/mpv-player/mpv
synced 2024-11-11 00:15:33 +01:00
b2c4df0543
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21873 b3059339-0415-0410-9bf9-f77b7e298cf2
11 lines
262 B
C
11 lines
262 B
C
#include "config.h"
|
|
|
|
#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;
|
|
}
|