diff options
author | Ben Straub <bstraub@github.com> | 2012-06-11 12:55:36 -0700 |
---|---|---|
committer | Ben Straub <bstraub@github.com> | 2012-06-11 12:55:36 -0700 |
commit | 0284a21983b0158c22aa8f8267aa9de60cb6722b (patch) | |
tree | b0f6b4ea71cc090230b539a5891a91a35de2b39e /src/posix.h | |
parent | 80779ea83ed606fadbb7affdbee22c3abb946284 (diff) | |
download | libgit2-0284a21983b0158c22aa8f8267aa9de60cb6722b.tar.gz |
Fix mingw32 (Travis) build.
Diffstat (limited to 'src/posix.h')
-rw-r--r-- | src/posix.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |