return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error);
#include "zlib_inflate/inftrees.c"
#include "zlib_inflate/inffast.c"
#include "zlib_inflate/inflate.c"
#include "zlib_inflate/inftrees.h"
#include "zlib_inflate/inffast.h"
#include "zlib_inflate/inflate.h"
#include "zlib_inflate/infutil.h"
#include <linux/decompress/inflate.h>
#include <linux/decompress/mm.h>
#define GZIP_IOBUF_SIZE (16*1024)
static long INIT nofill(void *buffer, unsigned long len)
STATIC int INIT __gunzip(unsigned char *buf, long len,
long (*fill)(void*, unsigned long),
long (*flush)(void*, unsigned long),
unsigned char *out_buf, long out_len,
out_buf = malloc(out_len);
out_len = ((size_t)~0) - (size_t)out_buf;
error("Out of memory while allocating output buffer");
zbuf = malloc(GZIP_IOBUF_SIZE);
error("Out of memory while allocating input buffer");
strm = malloc(sizeof(*strm));
error("Out of memory while allocating z_stream");
strm->workspace = malloc(flush ? zlib_inflate_workspacesize() :
sizeof(struct inflate_state));
if (strm->workspace == NULL) {
error("Out of memory while allocating workspace");
len = fill(zbuf, GZIP_IOBUF_SIZE);