diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
commit | 6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch) | |
tree | ee423c619fad03813234b9362694a17f3a638f0b /sbin/umount | |
parent | c707cb295fc3cac8d8feb343e949e0dcf71b8476 (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 'sbin/umount')
-rw-r--r-- | sbin/umount/umount.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c index ac06cbe20cf..f7406220f87 100644 --- a/sbin/umount/umount.c +++ b/sbin/umount/umount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: umount.c,v 1.12 2001/05/18 08:07:51 mickey Exp $ */ +/* $OpenBSD: umount.c,v 1.13 2002/02/16 21:27:38 millert Exp $ */ /* $NetBSD: umount.c,v 1.16 1996/05/11 14:13:55 mycroft Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)umount.c 8.3 (Berkeley) 2/20/94"; #else -static char rcsid[] = "$OpenBSD: umount.c,v 1.12 2001/05/18 08:07:51 mickey Exp $"; +static char rcsid[] = "$OpenBSD: umount.c,v 1.13 2002/02/16 21:27:38 millert Exp $"; #endif #endif /* not lint */ @@ -74,14 +74,14 @@ int fake, fflag, verbose; char **typelist = NULL; char *nfshost; -char *getmntname __P((char *, mntwhat, char *)); -void maketypelist __P((char *)); -int selected __P((const char *)); -int namematch __P((struct hostent *)); -int umountall __P((void)); -int umountfs __P((char *)); -void usage __P((void)); -int xdr_dir __P((XDR *, char *)); +char *getmntname(char *, mntwhat, char *); +void maketypelist(char *); +int selected(const char *); +int namematch(struct hostent *); +int umountall(void); +int umountfs(char *); +void usage(void); +int xdr_dir(XDR *, char *); int main(argc, argv) |