summaryrefslogtreecommitdiff
path: root/include/mpool.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-17 19:42:41 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-17 19:42:41 +0000
commitd522f6eb0324008023fed0be4d046f3fc51b0356 (patch)
tree9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /include/mpool.h
parent1b433a7e5b43fe0dec72e100525e31299629c117 (diff)
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'include/mpool.h')
-rw-r--r--include/mpool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mpool.h b/include/mpool.h
index 3d5a249c607..b355371ca87 100644
--- a/include/mpool.h
+++ b/include/mpool.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpool.h,v 1.7 2002/02/16 21:27:17 millert Exp $ */
+/* $OpenBSD: mpool.h,v 1.8 2002/02/17 19:42:21 millert Exp $ */
/* $NetBSD: mpool.h,v 1.7 1996/05/03 21:13:41 cgd Exp $ */
/*-
@@ -99,8 +99,8 @@ typedef struct MPOOL {
__BEGIN_DECLS
MPOOL *mpool_open(void *, int, pgno_t, pgno_t);
-void mpool_filter __P((MPOOL *, void (*)(void *, pgno_t, void *),
- void (*)(void *, pgno_t, void *), void *));
+void mpool_filter(MPOOL *, void (*)(void *, pgno_t, void *),
+ void (*)(void *, pgno_t, void *), void *);
void *mpool_new(MPOOL *, pgno_t *, u_int);
void *mpool_get(MPOOL *, pgno_t, u_int);
int mpool_delete(MPOOL *, void *);