From e6b747c34a69fbd93e40cbf58530054522f7e5f9 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 12 Oct 2009 21:06:30 +0000 Subject: [PATCH] Declare struct timezone in util.h so that borken mingw versions do not complain svn:r1441 --- include/event2/util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/event2/util.h b/include/event2/util.h index 126a3037..2b23e62b 100644 --- a/include/event2/util.h +++ b/include/event2/util.h @@ -256,6 +256,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 -- 2.50.1