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 /usr.bin/mail | |
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 'usr.bin/mail')
-rw-r--r-- | usr.bin/mail/def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mail/def.h b/usr.bin/mail/def.h index 0035ca9918d..6e2a80c53b9 100644 --- a/usr.bin/mail/def.h +++ b/usr.bin/mail/def.h @@ -1,4 +1,4 @@ -/* $OpenBSD: def.h,v 1.9 2001/11/21 15:26:39 millert Exp $ */ +/* $OpenBSD: def.h,v 1.10 2002/02/16 21:27:48 millert Exp $ */ /* $NetBSD: def.h,v 1.9 1996/12/28 07:11:00 tls Exp $ */ /* @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)def.h 8.4 (Berkeley) 4/20/95 - * $OpenBSD: def.h,v 1.9 2001/11/21 15:26:39 millert Exp $ + * $OpenBSD: def.h,v 1.10 2002/02/16 21:27:48 millert Exp $ */ /* @@ -112,8 +112,8 @@ struct cmd { char *c_name; /* Name of command */ union { int (*c_func0)(); - int (*c_func1) __P((void *)); - int (*c_func2) __P((void *, void *)); + int (*c_func1)(void *); + int (*c_func2)(void *, void *); } cfunc; /* Implementor of the command */ #define c_func cfunc.c_func1 #define c_func2 cfunc.c_func2 |