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/newfs/newfs.c | |
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/newfs/newfs.c')
-rw-r--r-- | sbin/newfs/newfs.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index 0698875c461..a7a00760424 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newfs.c,v 1.29 2001/11/05 07:39:17 mpech Exp $ */ +/* $OpenBSD: newfs.c,v 1.30 2002/02/16 21:27:36 millert Exp $ */ /* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)newfs.c 8.8 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: newfs.c,v 1.29 2001/11/05 07:39:17 mpech Exp $"; +static char rcsid[] = "$OpenBSD: newfs.c,v 1.30 2002/02/16 21:27:36 millert Exp $"; #endif #endif /* not lint */ @@ -89,11 +89,11 @@ struct mntopt mopts[] = { { NULL }, }; -void fatal __P((const char *fmt, ...)); -void usage __P((void)); -void mkfs __P((struct partition *, char *, int, int)); -void rewritelabel __P((char *, int, struct disklabel *)); -u_short dkcksum __P((struct disklabel *)); +void fatal(const char *fmt, ...); +void usage(void); +void mkfs(struct partition *, char *, int, int); +void rewritelabel(char *, int, struct disklabel *); +u_short dkcksum(struct disklabel *); #define COMPAT /* allow non-labeled disks */ |