From c07c27628e2c26c2f65692c11d43350459c359e2 Mon Sep 17 00:00:00 2001 From: jgarcia Date: Tue, 22 May 2007 15:55:36 +0000 Subject: [PATCH] timeval structure does exist in Windows --- src/c/time.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/time.d b/src/c/time.d index c9cf6571b..d307a026c 100644 --- a/src/c/time.d +++ b/src/c/time.d @@ -42,7 +42,7 @@ #undef HAVE_NANOSLEEP #endif -#if !defined(HAVE_GETTIMEOFDAY) && !defined(HAVE_GETRUSAGE) +#if !defined(HAVE_GETTIMEOFDAY) && !defined(HAVE_GETRUSAGE) && !defined(_MSC_VER) && !defined(mingw32) struct timeval { long tv_sec; long tv_usec;