mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
f1c5213d69
* sysdeps/mach/hurd/Makefile (libmachuser-link.so-no-z-defs, libhurduser-link.so-no-z-defs): New variables. * malloc/malloc.c: Revert last change. * malloc/malloc.h (_int_*): Move these decls to ... * include/malloc.h: ... here. Add attribute_hidden. (_int_valloc): Declare it too.
29 lines
998 B
C
29 lines
998 B
C
#ifndef _MALLOC_H
|
|
#include <malloc/malloc.h>
|
|
|
|
|
|
/* In the GNU libc we rename the global variable
|
|
`__malloc_initialized' to `__libc_malloc_initialized'. */
|
|
#define __malloc_initialized __libc_malloc_initialized
|
|
/* Nonzero if the malloc is already initialized. */
|
|
extern int __malloc_initialized attribute_hidden;
|
|
|
|
/* Internal routines, operating on "arenas". */
|
|
struct malloc_state;
|
|
typedef struct malloc_state *mstate;
|
|
|
|
extern mstate _int_new_arena (size_t __ini_size) attribute_hidden;
|
|
extern __malloc_ptr_t _int_malloc (mstate __m, size_t __size) attribute_hidden;
|
|
extern void _int_free (mstate __m, __malloc_ptr_t __ptr)
|
|
attribute_hidden;
|
|
extern __malloc_ptr_t _int_realloc (mstate __m,
|
|
__malloc_ptr_t __ptr,
|
|
size_t __size) attribute_hidden;
|
|
extern __malloc_ptr_t _int_memalign (mstate __m, size_t __alignment,
|
|
size_t __size)
|
|
attribute_hidden;
|
|
extern __malloc_ptr_t _int_valloc (mstate __m, size_t __size)
|
|
attribute_hidden;
|
|
|
|
#endif
|