Deleted Added
full compact
inflate.c (30309) inflate.c (30354)
1/*
2 * Most parts of this file are not covered by:
3 * ----------------------------------------------------------------------------
4 * "THE BEER-WARE LICENSE" (Revision 42):
5 * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
6 * can do whatever you want with this stuff. If we meet some day, and you think
7 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
8 * ----------------------------------------------------------------------------
9 *
1/*
2 * Most parts of this file are not covered by:
3 * ----------------------------------------------------------------------------
4 * "THE BEER-WARE LICENSE" (Revision 42):
5 * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
6 * can do whatever you want with this stuff. If we meet some day, and you think
7 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
8 * ----------------------------------------------------------------------------
9 *
10 * $Id: inflate.c,v 1.9 1997/08/02 14:31:25 bde Exp $
10 * $Id: inflate.c,v 1.10 1997/10/11 18:31:20 phk Exp $
11 *
12 *
13 */
14
15#include <sys/param.h>
16#include <sys/inflate.h>
17#ifdef KERNEL
18#include <sys/systm.h>
19#endif
20#include <sys/malloc.h>
21
11 *
12 *
13 */
14
15#include <sys/param.h>
16#include <sys/inflate.h>
17#ifdef KERNEL
18#include <sys/systm.h>
19#endif
20#include <sys/malloc.h>
21
22MALLOC_DEFINE(M_GZIP, "Gzip trees", "Gzip trees");
22static MALLOC_DEFINE(M_GZIP, "Gzip trees", "Gzip trees");
23
24/* needed to make inflate() work */
25#define uch u_char
26#define ush u_short
27#define ulg u_long
28
29/* Stuff to make inflate() work */
30#ifdef KERNEL

--- 1043 unchanged lines hidden ---
23
24/* needed to make inflate() work */
25#define uch u_char
26#define ush u_short
27#define ulg u_long
28
29/* Stuff to make inflate() work */
30#ifdef KERNEL

--- 1043 unchanged lines hidden ---