C11 aligned_alloc() support for <stdlib.h>
newlib/ChangeLog 2015-10-14 Sebastian Huber <sebastian.huber@embedded-brains.de> * libc/include/stdlib.h (alloc_aligned): Declare.
This commit is contained in:
parent
d67f71ab85
commit
da60762bfe
|
@ -1,3 +1,7 @@
|
||||||
|
2015-10-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||||
|
|
||||||
|
* libc/include/stdlib.h (alloc_aligned): Declare.
|
||||||
|
|
||||||
2015-10-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
2015-10-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||||
|
|
||||||
* libc/include/stdlib.h (at_quick_exit): Declare.
|
* libc/include/stdlib.h (at_quick_exit): Declare.
|
||||||
|
|
|
@ -284,6 +284,8 @@ extern long double strtold (const char *__restrict, char **__restrict);
|
||||||
* If we're in a mode greater than C99, expose C11 functions.
|
* If we're in a mode greater than C99, expose C11 functions.
|
||||||
*/
|
*/
|
||||||
#if __ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L
|
#if __ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L
|
||||||
|
void * aligned_alloc(size_t, size_t) __malloc_like __alloc_align(1)
|
||||||
|
__alloc_size(2);
|
||||||
int at_quick_exit(void (*)(void));
|
int at_quick_exit(void (*)(void));
|
||||||
_Noreturn void
|
_Noreturn void
|
||||||
quick_exit(int);
|
quick_exit(int);
|
||||||
|
|
Loading…
Reference in New Issue