summaryrefslogtreecommitdiff
path: root/sys/kern/kern_fork.c
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1997-12-12 04:00:59 +0000
committerJohn Dyson <dyson@FreeBSD.org>1997-12-12 04:00:59 +0000
commit74b2192ae6309fcbe617ed63389125ff0c152af2 (patch)
treef22967b4ad8e929fdab55160590d1e3d3f12807f /sys/kern/kern_fork.c
parentba9d19e99b83daaf5ed80c79f915ac179726d150 (diff)
Notes
Diffstat (limited to 'sys/kern/kern_fork.c')
-rw-r--r--sys/kern/kern_fork.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c
index e7fa08932de9..df7b863c9de3 100644
--- a/sys/kern/kern_fork.c
+++ b/sys/kern/kern_fork.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_fork.c 8.6 (Berkeley) 4/8/94
- * $Id: kern_fork.c,v 1.48 1997/11/06 19:29:09 phk Exp $
+ * $Id: kern_fork.c,v 1.49 1997/11/20 16:36:17 bde Exp $
*/
#include "opt_ktrace.h"
@@ -68,8 +68,6 @@ static int fast_vfork = 1;
#endif
SYSCTL_INT(_kern, OID_AUTO, fast_vfork, CTLFLAG_RW, &fast_vfork, 0, "");
-static int fork1 __P((struct proc *p, int flags));
-
/*
* These are the stuctures used to create a callout list for things to do
* when forking a process
@@ -121,7 +119,7 @@ rfork(p, uap)
int nprocs = 1; /* process 0 */
static int nextpid = 0;
-static int
+int
fork1(p1, flags)
register struct proc *p1;
int flags;