diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-04 04:01:19 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-04 04:01:19 +0000 |
commit | b74b72a5ce9dc347e66f786f2be5240945e0d461 (patch) | |
tree | d00138aa37a48205876fae7ca375eb51ff286be2 /src/common/torgzip.c | |
parent | d0c158c8d69ead9c5d60011589bdf4d379aca208 (diff) | |
download | tor-b74b72a5ce9dc347e66f786f2be5240945e0d461.tar.gz tor-b74b72a5ce9dc347e66f786f2be5240945e0d461.zip |
Fix windows build
svn:r2670
Diffstat (limited to 'src/common/torgzip.c')
-rw-r--r-- | src/common/torgzip.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/torgzip.c b/src/common/torgzip.c index 660ab0e05f..0491d87d14 100644 --- a/src/common/torgzip.c +++ b/src/common/torgzip.c @@ -13,7 +13,11 @@ #include <stdlib.h> #include <stdio.h> #include <assert.h> +#ifdef MS_WINDOWS +#include "..\..\contrib\zlib\zlib.h" +#else #include <zlib.h> +#endif #include "util.h" #include "log.h" |