diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-12-23 23:49:48 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-01 07:17:21 -0500 |
commit | 380d7e87dc80978581e73063dff0e264283c0306 (patch) | |
tree | 7d7bf0ae5f0ad112100bc49a2e90bcb94f9345ec /stdlib/stdlib.h | |
parent | c0e87cc01807aee964014bb6518694e7f42b71a7 (diff) | |
download | glibc-380d7e87dc80978581e73063dff0e264283c0306.tar.gz glibc-380d7e87dc80978581e73063dff0e264283c0306.tar.xz glibc-380d7e87dc80978581e73063dff0e264283c0306.zip |
Implement aligned_alloc
Diffstat (limited to 'stdlib/stdlib.h')
-rw-r--r-- | stdlib/stdlib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 754743f767..55886662bc 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -509,6 +509,11 @@ extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size) __THROW __nonnull ((1)) __wur; #endif +#ifdef __USE_ISOC11 +/* ISO C variant of aligned allocation. */ +extern int aligned_alloc (size_t __alignment, size_t __size) __THROW __wur; +#endif + __BEGIN_NAMESPACE_STD /* Abort execution and generate a core-dump. */ extern void abort (void) __THROW __attribute__ ((__noreturn__)); |