mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
1b23389cbd
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9835 b3059339-0415-0410-9bf9-f77b7e298cf2
13 lines
298 B
C
13 lines
298 B
C
#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
|