X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fpagealign_alloc.h;h=8d4b2850b8396b4c855947facadd4353714d1ada;hb=07809063056aef043ba738ab8229042f1ffc9659;hp=41fa5d5cf15b4bcb7c431052322598a4a7bc51fb;hpb=f64a5d6252a22e5ec3c050f9f49b4d591ec82e78;p=gnulib.git diff --git a/lib/pagealign_alloc.h b/lib/pagealign_alloc.h index 41fa5d5cf..8d4b2850b 100644 --- a/lib/pagealign_alloc.h +++ b/lib/pagealign_alloc.h @@ -1,6 +1,6 @@ /* Memory allocation aligned to system page boundaries. - Copyright (C) 2005, 2008 Free Software Foundation, Inc. + Copyright (C) 2005, 2008, 2010-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -29,6 +29,9 @@ extern void *pagealign_alloc (size_t size) # if __GNUC__ >= 3 __attribute__ ((__malloc__)) +# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) + __attribute__ ((__alloc_size__ (1))) +# endif # endif ; @@ -37,6 +40,9 @@ extern void *pagealign_alloc (size_t size) extern void *pagealign_xalloc (size_t size) # if __GNUC__ >= 3 __attribute__ ((__malloc__)) +# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) + __attribute__ ((__alloc_size__ (1))) +# endif # endif ;