diff options
author | phk <phk@FreeBSD.org> | 1995-12-14 08:32:45 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-12-14 08:32:45 +0000 |
commit | 63ec2c0ae9b44c5394bae5d6ee7fea5be9659585 (patch) | |
tree | 17b584943b186d479fdf3906ec2bef1ea2ca47bf /sys/kern/subr_rlist.c | |
parent | 30e263dcabc35e19f5e060d92f09d212e9b56668 (diff) | |
download | FreeBSD-src-63ec2c0ae9b44c5394bae5d6ee7fea5be9659585.zip FreeBSD-src-63ec2c0ae9b44c5394bae5d6ee7fea5be9659585.tar.gz |
A Major staticize sweep. Generates a couple of warnings that I'll deal
with later.
A number of unused vars removed.
A number of unused procs removed or #ifdefed.
Diffstat (limited to 'sys/kern/subr_rlist.c')
-rw-r--r-- | sys/kern/subr_rlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_rlist.c b/sys/kern/subr_rlist.c index 2b593cb..f73af58 100644 --- a/sys/kern/subr_rlist.c +++ b/sys/kern/subr_rlist.c @@ -54,7 +54,7 @@ * functioning of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: subr_rlist.c,v 1.13 1995/12/07 12:46:53 davidg Exp $ + * $Id: subr_rlist.c,v 1.14 1995/12/11 04:56:02 dyson Exp $ */ #include <sys/param.h> @@ -74,7 +74,7 @@ #define RLIST_MIN 128 static int rlist_count=0, rlist_desired=0; static struct rlist *rlfree; -int rlist_active; +static int rlist_active; static struct rlist *rlist_malloc __P((void)); |