From 36e7a51ea1dedf0fc860ff3106aee1db1ab3b1f5 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 12 Oct 1997 20:26:33 +0000 Subject: Last major round (Unless Bruce thinks of somthing :-) of malloc changes. Distribute all but the most fundamental malloc types. This time I also remembered the trick to making things static: Put "static" in front of them. A couple of finer points by: bde --- sys/kern/vfs_export.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/kern/vfs_export.c') diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index 2969c8a..03c64d2 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.108 1997/10/11 07:34:27 phk Exp $ + * $Id: vfs_subr.c,v 1.109 1997/10/11 18:31:26 phk Exp $ */ /* @@ -49,11 +49,11 @@ #include #include #include +#include #include #include #include #include -#include #include #include #include @@ -68,7 +68,7 @@ #include -MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure"); +static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure"); #ifdef DDB extern void printlockedvnodes __P((void)); -- cgit v1.1