Need deflateParams() stub now, too.

This commit is contained in:
thorpej 1998-11-12 16:49:47 +00:00
parent cab96925f3
commit d08c29080c

View File

@ -1,4 +1,4 @@
/* $NetBSD: zcat.c,v 1.2 1996/09/24 20:40:11 gwr Exp $ */
/* $NetBSD: zcat.c,v 1.3 1998/11/12 16:49:47 thorpej Exp $ */
/* mini zcat.c -- a minimal zcat using the zlib compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
@ -122,3 +122,8 @@ int deflateEnd (z_streamp strm)
{
return(-1);
}
int deflateParams (z_streamp strm, int level, int strategy)
{
return(Z_STREAM_ERROR);
}