diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /sbin/mount | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 36f9bc80214..40176ae04eb 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.25 2002/02/16 21:27:35 millert Exp $ */ +/* $OpenBSD: mount.c,v 1.26 2002/02/17 19:42:28 millert Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.25 2002/02/16 21:27:35 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.26 2002/02/17 19:42:28 millert Exp $"; #endif #endif /* not lint */ @@ -82,8 +82,8 @@ struct statfs int hasopt(const char *, const char *); void maketypelist(char *); void mangle(char *, int *, const char **); -int mountfs __P((const char *, const char *, const char *, - int, const char *, const char *, int)); +int mountfs(const char *, const char *, const char *, int, const char *, + const char *, int); void prmount(struct statfs *); int disklabelcheck(struct fstab *); void usage(void); |