diff options
author | bde <bde@FreeBSD.org> | 1997-08-26 00:15:04 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-08-26 00:15:04 +0000 |
commit | 35a98c3590a8365432483d4e3ed5bc5e8f8ed604 (patch) | |
tree | 5f554015948faf4e982624d12bc77e9cc85e4816 /sys/kern/kern_fork.c | |
parent | 6fcfc89b8c1c3972921e2a3f60ac5b5891f7e05d (diff) | |
download | FreeBSD-src-35a98c3590a8365432483d4e3ed5bc5e8f8ed604.zip FreeBSD-src-35a98c3590a8365432483d4e3ed5bc5e8f8ed604.tar.gz |
Fixed some gratuitous ANSIisms.
Diffstat (limited to 'sys/kern/kern_fork.c')
-rw-r--r-- | sys/kern/kern_fork.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 13c6c51..f5a59a3 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.45 1997/07/06 02:40:41 dyson Exp $ + * $Id: kern_fork.c,v 1.46 1997/08/22 15:10:00 peter Exp $ */ #include "opt_ktrace.h" @@ -457,7 +457,8 @@ again: * Returns 0 on success or a standard error number. */ int -at_fork(forklist_fn function) +at_fork(function) + forklist_fn function; { fle_p ep; @@ -479,7 +480,8 @@ at_fork(forklist_fn function) * Theoretically this value can only be 0 or 1. */ int -rm_at_fork(forklist_fn function) +rm_at_fork(function) + forklist_fn function; { fle_p *epp, ep; int count; @@ -499,5 +501,3 @@ rm_at_fork(forklist_fn function) } return (count); } - - |