From d7a6ab28035779065026b70dca440892d819c0bc Mon Sep 17 00:00:00 2001 From: eivind Date: Mon, 9 Feb 1998 06:11:36 +0000 Subject: Staticize. --- sys/kern/kern_resource.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/kern/kern_resource.c') diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c index d1bb77f..02c288e 100644 --- a/sys/kern/kern_resource.c +++ b/sys/kern/kern_resource.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_resource.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_resource.c,v 1.30 1998/01/19 12:39:00 bde Exp $ + * $Id: kern_resource.c,v 1.31 1998/02/04 18:43:10 dg Exp $ */ #include "opt_compat.h" @@ -58,8 +58,8 @@ #include #include -int donice __P((struct proc *curp, struct proc *chgp, int n)); -int dosetrlimit __P((struct proc *p, u_int which, struct rlimit *limp)); +static int donice __P((struct proc *curp, struct proc *chgp, int n)); +static int dosetrlimit __P((struct proc *p, u_int which, struct rlimit *limp)); /* * Resource controls and accounting. @@ -186,7 +186,7 @@ setpriority(curp, uap) return (error); } -int +static int donice(curp, chgp, n) register struct proc *curp, *chgp; register int n; @@ -360,7 +360,7 @@ setrlimit(p, uap) return (dosetrlimit(p, uap->which, &alim)); } -int +static int dosetrlimit(p, which, limp) struct proc *p; u_int which; -- cgit v1.1