Fix gzgetc undefine when Z_PREFIX set [Turk].

pull/19/head
Mark Adler 13 years ago
parent 3a8e3bd9e5
commit 6a181356bd
  1. 6
      gzread.c

@ -378,7 +378,11 @@ int ZEXPORT gzread(file, buf, len)
}
/* -- see zlib.h -- */
#undef gzgetc
#ifdef Z_PREFIX_SET
# undef z_gzgetc
#else
# undef gzgetc
#endif
int ZEXPORT gzgetc(file)
gzFile file;
{

Loading…
Cancel
Save