diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-19 01:41:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-19 01:41:15 +0000 |
commit | 6792a0541d8ae3784572478b89043dd72c01867f (patch) | |
tree | 4be36813992ba71c83e78e4a8b144709edfd1f4b /gnu/usr.sbin/sendmail/include/sm/cdefs.h | |
parent | 44556ed4f297a8bb4fa0fbdadde9afcd17bb988d (diff) |
Update to sendmail 8.12.11. I've been runninga beta version of this for
some time without problems. See the RELEASE_NOTES for the change log.
Diffstat (limited to 'gnu/usr.sbin/sendmail/include/sm/cdefs.h')
-rw-r--r-- | gnu/usr.sbin/sendmail/include/sm/cdefs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/usr.sbin/sendmail/include/sm/cdefs.h b/gnu/usr.sbin/sendmail/include/sm/cdefs.h index d4dce9ba8ea..76a95e84670 100644 --- a/gnu/usr.sbin/sendmail/include/sm/cdefs.h +++ b/gnu/usr.sbin/sendmail/include/sm/cdefs.h @@ -6,7 +6,7 @@ * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. * - * $Sendmail: cdefs.h,v 1.15 2002/01/16 18:30:11 ca Exp $ + * $Sendmail: cdefs.h,v 1.15.2.1 2003/12/05 22:44:17 ca Exp $ */ /* @@ -67,11 +67,14 @@ # if __GNUC__ >= 2 # if __GNUC__ == 2 && __GNUC_MINOR__ < 5 # define SM_DEAD(proto) volatile proto +# define SM_DEAD_D volatile # else /* __GNUC__ == 2 && __GNUC_MINOR__ < 5 */ # define SM_DEAD(proto) proto __attribute__((__noreturn__)) +# define SM_DEAD_D # endif /* __GNUC__ == 2 && __GNUC_MINOR__ < 5 */ # else /* __GNUC__ >= 2 */ # define SM_DEAD(proto) proto +# define SM_DEAD_D # endif /* __GNUC__ >= 2 */ # endif /* SM_DEAD */ |