From 4be9b544ea79d601b82bf9eb82549cc627584630 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 29 Dec 2012 16:49:53 -0500 Subject: stdlib.h: use existing malloc/alloc_size attribute defines Signed-off-by: Mike Frysinger --- stdlib/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib') diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index fa1175c028..f7a818aa65 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -507,7 +507,7 @@ extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size) #ifdef __USE_ISOC11 /* ISO C variant of aligned allocation. */ extern void *aligned_alloc (size_t __alignment, size_t __size) - __THROW __wur __attribute__ ((__malloc__, __alloc_size__ (2))); + __THROW __attribute_malloc__ __attribute_alloc_size__ ((2)) __wur; #endif __BEGIN_NAMESPACE_STD -- cgit 1.4.1