summaryrefslogtreecommitdiff
path: root/bin/df/ext2fs_df.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /bin/df/ext2fs_df.c
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'bin/df/ext2fs_df.c')
-rw-r--r--bin/df/ext2fs_df.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/df/ext2fs_df.c b/bin/df/ext2fs_df.c
index de3612862c6..cde48ad1c1f 100644
--- a/bin/df/ext2fs_df.c
+++ b/bin/df/ext2fs_df.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_df.c,v 1.7 2001/05/11 18:40:46 mickey Exp $ */
+/* $OpenBSD: ext2fs_df.c,v 1.8 2002/02/16 21:27:06 millert Exp $ */
/*
* This file is substantially derived from src/sys/ufs/ext2fs/ext2fs_vfsops.c:e2fs_statfs().
@@ -52,10 +52,10 @@
#include <fcntl.h>
#include <fstab.h>
-int e2fs_df __P((int, char *, struct statfs *));
+int e2fs_df(int, char *, struct statfs *);
-extern int bread __P((int, off_t, void *, int));
-extern char *getmntpt __P((char *));
+extern int bread(int, off_t, void *, int);
+extern char *getmntpt(char *);
union {
struct ext2fs ie_fs;