From 6824b322b13a43e72d450a23279f4b846f2e5ff9 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Tue, 4 Apr 1995 02:02:28 +0000 Subject: [PATCH] Added prototype for phashinit() function. --- sys/sys/systm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/sys/systm.h b/sys/sys/systm.h index fa2533217709..20fc4d2aec11 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)systm.h 8.4 (Berkeley) 2/23/94 - * $Id: systm.h,v 1.17 1995/03/28 07:57:37 bde Exp $ + * $Id: systm.h,v 1.18 1995/04/01 20:19:00 joerg Exp $ */ #ifndef _SYS_SYSTM_H_ @@ -113,6 +113,7 @@ int eopnotsupp __P((void)); int seltrue __P((dev_t dev, int which, struct proc *p)); int ureadc __P((int, struct uio *)); void *hashinit __P((int count, int type, u_long *hashmask)); +void *phashinit __P((int count, int type, u_long *nentries)); __dead void panic __P((const char *, ...)) __dead2; __dead void boot __P((int)) __dead2;