From f1c5213d6908c00e42556e9ac910cf150029f4c2 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 13 Jan 2003 03:42:27 +0000 Subject: * include/fcntl.h: Declare __libc_creat. * 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. --- include/malloc.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'include/malloc.h') diff --git a/include/malloc.h b/include/malloc.h index eb2afb9330..f0164a6273 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -8,4 +8,21 @@ /* 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 -- cgit 1.4.1