summaryrefslogtreecommitdiff
path: root/sys/miscfs
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
commite63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch)
treec2aa960c67a99a878c8902943399029fa598683f /sys/miscfs
parent71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff)
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/miscfs')
-rw-r--r--sys/miscfs/tcfs/tcfs_keytab.h4
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)