diff options
Diffstat (limited to 'sys/miscfs/tcfs/tcfs_keytab.h')
-rw-r--r-- | sys/miscfs/tcfs/tcfs_keytab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/tcfs/tcfs_keytab.h b/sys/miscfs/tcfs/tcfs_keytab.h index 2d24da9f76b..39026b2edc5 100644 --- a/sys/miscfs/tcfs/tcfs_keytab.h +++ b/sys/miscfs/tcfs/tcfs_keytab.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcfs_keytab.h,v 1.6 2002/03/14 01:27:08 millert Exp $ */ +/* $OpenBSD: tcfs_keytab.h,v 1.7 2002/03/14 03:16:10 millert Exp $ */ /* * Copyright 2000 The TCFS Project at http://tcfs.dia.unisa.it/ * All rights reserved. @@ -94,7 +94,7 @@ typedef struct _kt { #define NIL ((tcfs_keytab_node*)0) #ifdef _HAVE_HASH_ -int _tcfs_keytab_hash __P(unsigned int)); +int _tcfs_keytab_hash(unsigned int); #define tcfs_keytab_hash(x) _tcfs_keytab_hash((unsigned int)(x)) #else #define tcfs_keytab_hash(u) ((u)%KEYTABSIZE) |