summaryrefslogtreecommitdiff
path: root/usr.sbin/user
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /usr.sbin/user
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (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 'usr.sbin/user')
-rw-r--r--usr.sbin/user/usermgmt.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.sbin/user/usermgmt.h b/usr.sbin/user/usermgmt.h
index 0acdf239588..638534be285 100644
--- a/usr.sbin/user/usermgmt.h
+++ b/usr.sbin/user/usermgmt.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: usermgmt.h,v 1.3 2001/09/18 01:50:44 millert Exp $ */
+/* $OpenBSD: usermgmt.h,v 1.4 2002/02/16 21:28:10 millert Exp $ */
/* $NetBSD: usermgmt.h,v 1.4 1999/12/24 09:08:51 agc Exp $ */
/*
@@ -34,18 +34,18 @@
#ifndef USERMGMT_H_
#define USERMGMT_H_
-int useradd __P((int, char **));
-int usermod __P((int, char **));
-int userdel __P((int, char **));
-int groupadd __P((int, char **));
-int groupdel __P((int, char **));
-int groupmod __P((int, char **));
+int useradd(int, char **);
+int usermod(int, char **);
+int userdel(int, char **);
+int groupadd(int, char **);
+int groupdel(int, char **);
+int groupmod(int, char **);
#ifdef EXTENSIONS
-int userinfo __P((int, char **));
-int groupinfo __P((int, char **));
+int userinfo(int, char **);
+int groupinfo(int, char **);
#endif
-__dead void usermgmt_usage __P((const char *));
+__dead void usermgmt_usage(const char *);
#endif