mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
2000-04-14 Ulrich Drepper <drepper@redhat.com> * malloc/Versions [libc] (GLIBC_2.2): Add posix_memalign. * malloc/malloc.c: Implement posix_memalign for glibc. * include/stdlib.h: Add prototype for __posix_memalign. * stdlib/stdlib.h: Add prototype for posix_memalign.
This commit is contained in:
@ -549,6 +549,11 @@ extern void cfree (void *__ptr) __THROW;
|
||||
extern void *valloc (size_t __size) __THROW __attribute_malloc__;
|
||||
#endif
|
||||
|
||||
#ifdef __USE_XOPEN2K
|
||||
/* Allocate memiry of SIZE bytes with an alignment of ALIGNMENT. */
|
||||
extern int posix_memalign (void **memptr, size_t alignment, size_t size)
|
||||
__THROW;
|
||||
#endif
|
||||
|
||||
/* Abort execution and generate a core-dump. */
|
||||
extern void abort (void) __THROW __attribute__ ((__noreturn__));
|
||||
|
Reference in New Issue
Block a user