diff options
Diffstat (limited to 'sys/lib/libz/infutil.c')
-rw-r--r-- | sys/lib/libz/infutil.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/lib/libz/infutil.c b/sys/lib/libz/infutil.c index 48583a0981f..eb21199c350 100644 --- a/sys/lib/libz/infutil.c +++ b/sys/lib/libz/infutil.c @@ -1,5 +1,3 @@ -/* $OpenBSD: infutil.c,v 1.3 1998/05/30 02:20:53 mickey Exp $ */ - /* inflate_util.c -- data and routines common to blocks and codes * Copyright (C) 1995-1996 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h @@ -14,7 +12,7 @@ struct inflate_codes_state {int dummy;}; /* for buggy compilers */ /* And'ing with mask[n] masks the lower n bits */ -const uInt inflate_mask[17] = { +uInt inflate_mask[17] = { 0x0000, 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff, 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff |