summaryrefslogtreecommitdiffstats
path: root/osdep/gettimeofday.c
diff options
context:
space:
mode:
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