Don't define gzFile_s in gzguts.h for non-Apple

This commit is contained in:
twinaphex 2014-01-11 10:43:35 +01:00
parent 389b362da8
commit 7fc7776a48
1 changed files with 2 additions and 0 deletions

2
deps/rzlib/gzguts.h vendored
View File

@ -164,12 +164,14 @@
#define MODE_COPY 1 /* copy input directly */
#define MODE_GZIP 2 /* decompress a gzip stream */
#ifdef __APPLE__
struct gzFile_s
{
unsigned have;
unsigned char *next;
z_off64_t pos;
};
#endif
/* internal gzip file state data structure */
typedef struct {