$ brucify -deblunder

This commit is contained in:
Poul-Henning Kamp 1999-05-16 10:51:52 +00:00
parent f840bacd9a
commit d8bd3ac418
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47249
2 changed files with 9 additions and 5 deletions

View File

@ -6,7 +6,7 @@
.\"this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
.\"----------------------------------------------------------------------------
.\"
.\"$Id: malloc.c,v 1.44 1999/03/28 14:16:05 phk Exp $
.\"$Id: jail.2,v 1.1 1999/04/28 11:38:35 phk Exp $
.\"
.\"
.Dd April 28, 1999
@ -19,7 +19,7 @@
.Fd #include <sys/types.h>
.Fd #include <sys/jail.h>
.Ft int
.Fn jail "struct *jail"
.Fn jail "struct jail *jail"
.Sh DESCRIPTION
The
.Nm

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: loran.c,v 1.15 1999/04/11 03:06:06 eivind Exp $
* $Id: jail.h,v 1.1 1999/04/28 11:38:03 phk Exp $
*
*/
@ -19,14 +19,18 @@ struct jail {
u_int32_t ip_number;
};
#ifdef KERNEL
#ifndef KERNEL
int jail __P((struct jail *));
#else /* KERNEL */
#ifdef MALLOC_DECLARE
MALLOC_DECLARE(M_PRISON);
#endif
/*
* This structure describes a prison. It is pointed to by all struct
* This structure describes a prison. It is pointed to by all struct
* proc's of the inmates. pr_ref keeps track of them and is used to
* delete the struture when the last inmate is dead.
*/