From 40084d0d5c5031580907d61e2df81b5b21af6c68 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 7 Feb 2011 17:29:47 +0100 Subject: include: [c.h] add fallback for alloc_size attributes Reported-by: Davidlohr Bueso Signed-off-by: Karel Zak --- include/c.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'include/c.h') diff --git a/include/c.h b/include/c.h index 02c29e960..f50a338c9 100644 --- a/include/c.h +++ b/include/c.h @@ -10,6 +10,15 @@ /* * Compiler specific stuff */ +#ifndef __GNUC_PREREQ +# if defined __GNUC__ && defined __GNUC_MINOR__ +# define __GNUC_PREREQ(maj, min) \ + ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) +# else +# define __GNUC_PREREQ(maj, min) 0 +# endif +#endif + #ifdef __GNUC__ /* &a[0] degrades to a pointer: a different type from an array */ @@ -24,6 +33,24 @@ # define ignore_result(x) ((void) (x)) #endif /* !__GNUC__ */ +/* + * Function attributes + */ +#ifndef __ul_alloc_size +# if __GNUC_PREREQ (3, 0) +# define __ul_alloc_size(s) __attribute__((alloc_size(s))) +# else +# define __ul_alloc_size(s) +# endif +#endif + +#ifndef __ul_calloc_size +# if __GNUC_PREREQ (3, 0) +# define __ul_calloc_size(n, s) __attribute__((alloc_size(n, s))) +# else +# define __ul_calloc_size(n, s) +# endif +#endif /* Force a compilation error if condition is true, but also produce a * result (of value 0 and type size_t), so the expression can be used -- cgit v1.2.3-55-g7522