From 4f40209aa4060b9c066a2f0d9332ace7b8dfb391 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Sun, 20 Apr 2014 13:21:22 +1000 Subject: - djm@cvs.openbsd.org 2014/03/26 04:55:35 [chacha.h cipher-chachapoly.h digest.h hmac.h kex.h kexc25519.c [misc.h poly1305.h ssh-pkcs11.c] use __bounded(...) attribute recently added to sys/cdefs.h instead of longform __attribute__(__bounded(...)); for brevity and a warning free compilation with llvm/clang --- defines.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'defines.h') diff --git a/defines.h b/defines.h index 354d5b61..41861fbb 100644 --- a/defines.h +++ b/defines.h @@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.176 2014/01/17 13:12:38 dtucker Exp $ */ +/* $Id: defines.h,v 1.177 2014/04/20 03:21:23 djm Exp $ */ /* Constants */ @@ -826,4 +826,14 @@ struct winsize { # define arc4random_stir() #endif +/* __bounded macro */ +#ifndef __bounded +# if __GNUC_PREREQ__(3,3) && !defined(__clang__) +# define __bounded(args) __attribute__ ((__bounded__ args )) +# else +# define __bounded(args) /* delete */ +# endif /* __GNUC_PREREQ__(3,3) && !defined(__clang__) */ +#endif + + #endif /* _DEFINES_H */ -- cgit v1.2.3