From 0284a21983b0158c22aa8f8267aa9de60cb6722b Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Mon, 11 Jun 2012 12:55:36 -0700 Subject: [PATCH] Fix mingw32 (Travis) build. --- src/posix.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/posix.h b/src/posix.h index 3f52f9b72..5799c0499 100644 --- a/src/posix.h +++ b/src/posix.h @@ -66,6 +66,7 @@ typedef int GIT_SOCKET; #else typedef SOCKET GIT_SOCKET; +struct timezone; extern struct tm * p_localtime_r (const time_t *timer, struct tm *result); extern struct tm * p_gmtime_r (const time_t *timer, struct tm *result); extern int p_gettimeofday(struct timeval *tv, struct timezone *tz);