summaryrefslogtreecommitdiff
path: root/sys/msdosfs/msdosfs_fat.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/msdosfs/msdosfs_fat.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/msdosfs/msdosfs_fat.c')
-rw-r--r--sys/msdosfs/msdosfs_fat.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/msdosfs/msdosfs_fat.c b/sys/msdosfs/msdosfs_fat.c
index d01e16eb89f..6cda019aee4 100644
--- a/sys/msdosfs/msdosfs_fat.c
+++ b/sys/msdosfs/msdosfs_fat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: msdosfs_fat.c,v 1.10 2001/12/19 08:58:06 art Exp $ */
+/* $OpenBSD: msdosfs_fat.c,v 1.11 2002/03/14 01:27:09 millert Exp $ */
/* $NetBSD: msdosfs_fat.c,v 1.26 1997/10/17 11:24:02 ws Exp $ */
/*-
@@ -83,15 +83,15 @@ int fc_lmdistance[LMMAX]; /* counters for how far off the last
* cluster mapped entry was. */
int fc_largedistance; /* off by more than LMMAX */
-static void fatblock __P((struct msdosfsmount *, u_long, u_long *, u_long *,
- u_long *));
-void updatefats __P((struct msdosfsmount *, struct buf *, u_long));
-static __inline void usemap_free __P((struct msdosfsmount *, u_long));
-static __inline void usemap_alloc __P((struct msdosfsmount *, u_long));
-static int fatchain __P((struct msdosfsmount *, u_long, u_long, u_long));
-int chainlength __P((struct msdosfsmount *, u_long, u_long));
-int chainalloc __P((struct msdosfsmount *, u_long, u_long, u_long, u_long *,
- u_long *));
+static void fatblock(struct msdosfsmount *, u_long, u_long *, u_long *,
+ u_long *);
+void updatefats(struct msdosfsmount *, struct buf *, u_long);
+static __inline void usemap_free(struct msdosfsmount *, u_long);
+static __inline void usemap_alloc(struct msdosfsmount *, u_long);
+static int fatchain(struct msdosfsmount *, u_long, u_long, u_long);
+int chainlength(struct msdosfsmount *, u_long, u_long);
+int chainalloc(struct msdosfsmount *, u_long, u_long, u_long, u_long *,
+ u_long *);
static void
fatblock(pmp, ofs, bnp, sizep, bop)