]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix aligned_alloc prototype
authorUlrich Drepper <drepper@gmail.com>
Tue, 27 Dec 2011 12:35:05 +0000 (07:35 -0500)
committerUlrich Drepper <drepper@gmail.com>
Sun, 1 Jan 2012 12:17:22 +0000 (07:17 -0500)
stdlib/stdlib.h

index 55886662bc1d7e63412b202cd6dfc7c13dd6eac4..99c34a4ee50d334fa79b53dc240c5451b57a2f8a 100644 (file)
@@ -511,7 +511,8 @@ extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size)
 
 #ifdef __USE_ISOC11
 /* ISO C variant of aligned allocation.  */
-extern int aligned_alloc (size_t __alignment, size_t __size) __THROW __wur;
+extern void *aligned_alloc (size_t __alignment, size_t __size)
+     __THROW __wur __attribute__ ((__malloc__, __alloc_size__ (2)));
 #endif
 
 __BEGIN_NAMESPACE_STD