From a43fb158d0c5c90291b792d683aa0221403f1893 Mon Sep 17 00:00:00 2001 From: jsm Date: Tue, 27 Jan 2004 20:30:28 +0000 Subject: Remove uses of __P. --- monop/malloc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'monop/malloc.c') diff --git a/monop/malloc.c b/monop/malloc.c index 7596d815..f5b02396 100644 --- a/monop/malloc.c +++ b/monop/malloc.c @@ -1,4 +1,4 @@ -/* $NetBSD: malloc.c,v 1.2 2003/08/07 09:37:28 agc Exp $ */ +/* $NetBSD: malloc.c,v 1.3 2004/01/27 20:30:30 jsm Exp $ */ /* * Copyright (c) 1983, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)malloc.c 8.1 (Berkeley) 6/4/93"; #else -__RCSID("$NetBSD: malloc.c,v 1.2 2003/08/07 09:37:28 agc Exp $"); +__RCSID("$NetBSD: malloc.c,v 1.3 2004/01/27 20:30:30 jsm Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -120,16 +120,16 @@ static u_int nmalloc[NBUCKETS]; static mutex_t malloc_mutex = MUTEX_INITIALIZER; -static void morecore __P((int)); -static int findbucket __P((union overhead *, int)); +static void morecore(int); +static int findbucket(union overhead *, int); #ifdef MSTATS -void mstats __P((const char *)); +void mstats(const char *); #endif #if defined(DEBUG) || defined(RCHECK) #define ASSERT(p) if (!(p)) botch(__STRING(p)) -static void botch __P((const char *)); +static void botch(const char *); /* * NOTE: since this may be called while malloc_mutex is locked, stdio must not -- cgit v1.2.3