summaryrefslogtreecommitdiffstats
path: root/osdep/gettimeofday.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
commitb2c4df0543c3de1725763511eca658a055209f36 (patch)
tree618dd9e22574f0928d6c6bf09d28cf7096955e75 /osdep/gettimeofday.c
parent4cb9cfc6eead9bb182159d20a425baaaf01d9927 (diff)
downloadmpv-b2c4df0543c3de1725763511eca658a055209f36.tar.bz2
mpv-b2c4df0543c3de1725763511eca658a055209f36.tar.xz
Move #ifdef directives around complete files into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21873 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/gettimeofday.c')
-rw-r--r--osdep/gettimeofday.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/osdep/gettimeofday.c b/osdep/gettimeofday.c
index 860eb388e7..7436898121 100644
--- a/osdep/gettimeofday.c
+++ b/osdep/gettimeofday.c
@@ -1,6 +1,5 @@
#include "config.h"
-#ifndef HAVE_GETTIMEOFDAY
#include <sys/time.h>
#include <sys/timeb.h>
void gettimeofday(struct timeval* t,void* timezone)
@@ -9,4 +8,3 @@ void gettimeofday(struct timeval* t,void* timezone)
t->tv_sec=timebuffer.time;
t->tv_usec=1000*timebuffer.millitm;
}
-#endif