Deleted Added
full compact
1/*
2 * Most parts of this file are not covered by:
3 * ----------------------------------------------------------------------------
4 * "THE BEER-WARE LICENSE" (Revision 42):
5 * <phk@FreeBSD.org> 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 * $FreeBSD: head/sys/kern/inflate.c 111119 2003-02-19 05:47:46Z imp $
11 *
12 *
9 */
10
11#include <sys/cdefs.h>
12__FBSDID("$FreeBSD: head/sys/kern/inflate.c 116182 2003-06-11 00:56:59Z obrien $");
13
14#include <sys/param.h>
15#include <sys/inflate.h>
16#ifdef _KERNEL
17#include <sys/systm.h>
18#include <sys/kernel.h>
19#endif
20#include <sys/malloc.h>
21

--- 1056 unchanged lines hidden ---