From 42818a3d274f7ef85999efc624e633b9f9aaef14 Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Sun, 18 Apr 1993 16:33:16 -0800 Subject: [PATCH] use UCB standard for __P SCCS-vsn: usr.sbin/sendmail/src/useful.h 6.4 --- usr/src/usr.sbin/sendmail/src/useful.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/src/usr.sbin/sendmail/src/useful.h b/usr/src/usr.sbin/sendmail/src/useful.h index f68c1e2927..fe1a8c5487 100644 --- a/usr/src/usr.sbin/sendmail/src/useful.h +++ b/usr/src/usr.sbin/sendmail/src/useful.h @@ -4,16 +4,16 @@ * * %sccs.include.redist.c% * - * @(#)useful.h 6.3 (Berkeley) %G% + * @(#)useful.h 6.4 (Berkeley) %G% */ # include /* support for ANSI prototypes (or not, as the case may be) */ -#if defined(__STDC__) && defined(_FORGIVING_CC_) -#define P(protos) protos +#if defined(__STDC__) && defined(_FORGIVING_CC_) && !defined(__P) +#define __P(protos) protos #else -#define P(protos) () +#define __P(protos) () #endif /* support for bool type */ -- 2.20.1