2 bytes removed from zlib hehe long way to go to catch up to bzip2

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1246 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
justin1014 2002-10-01 06:36:17 +00:00
parent 6a5694d64a
commit 1f2a8f90c2
2 changed files with 2 additions and 4 deletions

View file

@ -15,14 +15,12 @@
#include "infcodes.h"
#include "infutil.h"
int ZEXPORT inflateInit(z_streamp z)
void inflateInit(z_streamp z)
{
z->blocks.end = z->blocks.window + (1 << DEF_WBITS);
z->blocks.mode = TYPE;
inflateReset(z);
return Z_OK;
}

View file

@ -196,7 +196,7 @@ typedef z_stream FAR *z_streamp;
ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
ZEXTERN void ZEXPORT inflateInit OF((z_streamp strm));
int ZEXPORT inflate(z_streamp z);
ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));