Module Name:    src
Committed By:   joerg
Date:           Tue Aug 30 20:52:10 UTC 2011

Modified Files:
        src/usr.sbin/vipw: vipw.c

Log Message:
De-__P + __dead


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/vipw/vipw.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/vipw/vipw.c
diff -u src/usr.sbin/vipw/vipw.c:1.14 src/usr.sbin/vipw/vipw.c:1.15
--- src/usr.sbin/vipw/vipw.c:1.14	Sun Apr 19 00:44:49 2009
+++ src/usr.sbin/vipw/vipw.c	Tue Aug 30 20:52:10 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vipw.c,v 1.14 2009/04/19 00:44:49 lukem Exp $	*/
+/*	$NetBSD: vipw.c,v 1.15 2011/08/30 20:52:10 joerg Exp $	*/
 
 /*
  * Copyright (c) 1987, 1993, 1994
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)vipw.c	8.3 (Berkeley) 4/2/94";
 #else
-__RCSID("$NetBSD: vipw.c,v 1.14 2009/04/19 00:44:49 lukem Exp $");
+__RCSID("$NetBSD: vipw.c,v 1.15 2011/08/30 20:52:10 joerg Exp $");
 #endif
 #endif /* not lint */
 
@@ -57,11 +57,10 @@
 #include <errno.h>
 #include <util.h>
 
-int	main __P((int, char **));
-static void	copyfile __P((int, int));
-static void	usage __P((void));
+static void	copyfile(int, int);
+__dead static void	usage(void);
 
-char mpwd[MAXPATHLEN], mpwdl[MAXPATHLEN];
+static char mpwd[MAXPATHLEN], mpwdl[MAXPATHLEN];
 
 int
 main(int argc, char *argv[])

Reply via email to