1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
* malloc/malloc.h: Make malloc, calloc, realloc, valloc, pvalloc,
	and __default_morecore with __attribute_malloc__.
This commit is contained in:
Ulrich Drepper
1999-12-19 08:44:05 +00:00
parent ae177b9c8a
commit 77c80d6591
2 changed files with 3 additions and 4 deletions

View File

@ -147,8 +147,7 @@ extern __malloc_ptr_t pvalloc __MALLOC_P ((size_t __size))
/* Underlying allocation function; successive calls should return
contiguous pieces of memory. */
extern __malloc_ptr_t (*__morecore) __MALLOC_PMT ((ptrdiff_t __size))
__attribute_malloc__;
extern __malloc_ptr_t (*__morecore) __MALLOC_PMT ((ptrdiff_t __size));
/* Default value of `__morecore'. */
extern __malloc_ptr_t __default_morecore __MALLOC_P ((ptrdiff_t __size))