summaryrefslogtreecommitdiff
path: root/usr.bin/mail/def.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/mail/def.h')
-rw-r--r--usr.bin/mail/def.h8
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