Deleted Added
full compact
10c10
< * $Id: imgact_gzip.c,v 1.4 1994/10/04 06:51:42 phk Exp $
---
> * $Id: inflate.c,v 1.2 1994/10/07 23:18:09 csgr Exp $
30,31d29
< #include <sys/resourcevar.h>
< #include <sys/exec.h>
35,38d32
< #include <sys/imgact.h>
< #include <sys/imgact_aout.h>
< #include <sys/kernel.h>
< #include <sys/sysent.h>
391a386,388
>
> #if 0
> /* never used - why not ? */
392a390
> #endif
456,457c454,455
< #define bb (glbl->bb) /* bit buffer */
< #define bk (glbl->bk) /* bits in bit buffer */
---
> #define bb (glbl->gz_bb) /* bit buffer */
> #define bk (glbl->gz_bk) /* bits in bit buffer */
513c511
< #define hufts (glbl->hufts)
---
> #define hufts (glbl->gz_hufts)
550c548
< static unsigned v[N_MAX]; /* values in order of bit length */
---
> unsigned v[N_MAX]; /* values in order of bit length */
917,920c915,918
< #define fixed_tl (glbl->fixed_tl)
< #define fixed_td (glbl->fixed_td)
< #define fixed_bl (glbl->fixed_bl)
< #define fixed_bd (glbl->fixed_bd)
---
> #define fixed_tl (glbl->gz_fixed_tl)
> #define fixed_td (glbl->gz_fixed_td)
> #define fixed_bl (glbl->gz_fixed_bl)
> #define fixed_bd (glbl->gz_fixed_bd)
991c989
< static unsigned ll[288+32]; /* literal/length and distance code lengths */
---
> unsigned ll[288+32]; /* literal/length and distance code lengths */
993c991
< static unsigned ll[286+30]; /* literal/length and distance code lengths */
---
> unsigned ll[286+30]; /* literal/length and distance code lengths */
1228c1226,1227
<
---
> #if 0
> /* Nobody uses this - why not? */
1240a1240
> #endif