aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/passwd
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-03-22 01:33:25 +0000
committerWarner Losh <imp@FreeBSD.org>2002-03-22 01:33:25 +0000
commitd3cb5ded92a4fcf21400c9742ca884549bebc99e (patch)
treebdbefa52f70f43a70ad528a58194f71ca4abf1e3 /usr.bin/passwd
parentf1bb2cd2aa7488657658fbc09aae2ead579049ab (diff)
downloadsrc-d3cb5ded92a4fcf21400c9742ca884549bebc99e.tar.gz
src-d3cb5ded92a4fcf21400c9742ca884549bebc99e.zip
remove __P
Notes
Notes: svn path=/head/; revision=92921
Diffstat (limited to 'usr.bin/passwd')
-rw-r--r--usr.bin/passwd/extern.h4
-rw-r--r--usr.bin/passwd/passwd.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/passwd/extern.h b/usr.bin/passwd/extern.h
index 287646c6a380..eae768c6e82a 100644
--- a/usr.bin/passwd/extern.h
+++ b/usr.bin/passwd/extern.h
@@ -34,5 +34,5 @@
* $FreeBSD$
*/
-int krb_passwd __P((char *, char *, char *, char *));
-int local_passwd __P((char *));
+int krb_passwd(char *, char *, char *, char *);
+int local_passwd(char *);
diff --git a/usr.bin/passwd/passwd.c b/usr.bin/passwd/passwd.c
index 0e03109f6cda..d24165037a5a 100644
--- a/usr.bin/passwd/passwd.c
+++ b/usr.bin/passwd/passwd.c
@@ -61,7 +61,7 @@ static const char rcsid[] =
#include <rpcsvc/yp.h>
int __use_yp = 0;
int yp_errno = YP_TRUE;
-extern int yp_passwd __P(( char * ));
+extern int yp_passwd( char * );
#endif
#ifdef KERBEROS
@@ -70,7 +70,7 @@ extern int yp_passwd __P(( char * ));
#include "extern.h"
-static void usage __P((void));
+static void usage(void);
int use_local_passwd = 0;