From 756c4cd394a6879bcf9c17185883d356796252a6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 12 Oct 2009 21:09:14 +0000 Subject: [PATCH] Declare struct timezone in evutil.h so that borken mingw versions do not complain svn:r1442 --- evutil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/evutil.h b/evutil.h index 0a018b8c..dcb0013d 100644 --- a/evutil.h +++ b/evutil.h @@ -168,6 +168,7 @@ ev_int64_t evutil_strtoll(const char *s, char **endptr, int base); #ifdef _EVENT_HAVE_GETTIMEOFDAY #define evutil_gettimeofday(tv, tz) gettimeofday((tv), (tz)) #else +struct timezone; int evutil_gettimeofday(struct timeval *tv, struct timezone *tz); #endif