summaryrefslogtreecommitdiffstats
path: root/defines.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-04-20 13:21:22 +1000
committerDamien Miller <djm@mindrot.org>2014-04-20 13:21:22 +1000
commit4f40209aa4060b9c066a2f0d9332ace7b8dfb391 (patch)
tree3f023418e3afa0ae151339aecae6d72b978014b8 /defines.h
parent9235a030ad1b16903fb495d81544e0f7c7449523 (diff)
- 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
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h12
1 files changed, 11 insertions, 1 deletions
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 */