From 357e37e023059920b1f80494e489797e2f69a3dd Mon Sep 17 00:00:00 2001 From: alfred Date: Tue, 19 Mar 2002 21:25:46 +0000 Subject: Remove __P. --- sys/kern/subr_clist.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/kern/subr_clist.c') diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index 13ab39a..78bb231 100644 --- a/sys/kern/subr_clist.c +++ b/sys/kern/subr_clist.c @@ -38,7 +38,7 @@ #include #include -static void clist_init __P((void *)); +static void clist_init(void *); SYSINIT(clist, SI_SUB_CLIST, SI_ORDER_FIRST, clist_init, NULL) static struct cblock *cfreelist = 0; @@ -50,10 +50,10 @@ static int ctotcount; #define INITIAL_CBLOCKS 50 #endif -static struct cblock *cblock_alloc __P((void)); -static void cblock_alloc_cblocks __P((int number)); -static void cblock_free __P((struct cblock *cblockp)); -static void cblock_free_cblocks __P((int number)); +static struct cblock *cblock_alloc(void); +static void cblock_alloc_cblocks(int number); +static void cblock_free(struct cblock *cblockp); +static void cblock_free_cblocks(int number); #include "opt_ddb.h" #ifdef DDB -- cgit v1.1