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/inflate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/inflate.c') diff --git a/sys/kern/inflate.c b/sys/kern/inflate.c index 5c765e4..4558eb3 100644 --- a/sys/kern/inflate.c +++ b/sys/kern/inflate.c @@ -7,7 +7,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: inflate.c,v 1.9 1997/08/02 14:31:25 bde Exp $ + * $Id: inflate.c,v 1.10 1997/10/11 18:31:20 phk Exp $ * * */ @@ -19,7 +19,7 @@ #endif #include -MALLOC_DEFINE(M_GZIP, "Gzip trees", "Gzip trees"); +static MALLOC_DEFINE(M_GZIP, "Gzip trees", "Gzip trees"); /* needed to make inflate() work */ #define uch u_char -- cgit v1.1