Deleted Added
sdiff udiff text old ( 185435 ) new ( 191668 )
full compact
1/*
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 */
9
10#include <sys/cdefs.h>
11__FBSDID("$FreeBSD: head/usr.sbin/jail/jail.c 185435 2008-11-29 14:32:14Z bz $");
12
13#include <sys/param.h>
14#include <sys/jail.h>
15#include <sys/queue.h>
16#include <sys/socket.h>
17#include <sys/sysctl.h>
18#include <sys/types.h>
19

--- 393 unchanged lines hidden ---