diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-10-14 12:00:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-10-14 12:00:45 +0000 |
commit | 749f5387c19449209615b282ac738032f2a890e7 (patch) | |
tree | a6c04163df233dd5c723660f5a4f6550f70fc038 /lib/timeval.c | |
parent | 7553341badc73d7e9cdf6a0dd1f03ae04f766b92 (diff) | |
download | curl-749f5387c19449209615b282ac738032f2a890e7.tar.gz |
Gisle Vanem's IPv6-on-Windows patch applied!
Diffstat (limited to 'lib/timeval.c')
-rw-r--r-- | lib/timeval.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/timeval.c b/lib/timeval.c index 7ab711631..cb0ae1249 100644 --- a/lib/timeval.c +++ b/lib/timeval.c @@ -21,14 +21,13 @@ * $Id$ ***************************************************************************/ -#ifdef WIN32 -#include <windows.h> -#endif #include "timeval.h" #ifndef HAVE_GETTIMEOFDAY #ifdef WIN32 +#include <mmsystem.h> + int gettimeofday (struct timeval *tp, void *nothing) { |