diff options
author | Roland McGrath <roland@gnu.org> | 2003-01-13 03:42:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-01-13 03:42:27 +0000 |
commit | f1c5213d6908c00e42556e9ac910cf150029f4c2 (patch) | |
tree | 97737a5aa00658c356b14b80570e5a253c7e45f5 /malloc/malloc.h | |
parent | 2674e3c6fc3d2a1279b0e31877f90a22a523504c (diff) | |
download | glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.tar.gz glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.tar.xz glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.zip |
* 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.
Diffstat (limited to 'malloc/malloc.h')
-rw-r--r-- | malloc/malloc.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/malloc/malloc.h b/malloc/malloc.h index 5ddd780958..bbcdf22b23 100644 --- a/malloc/malloc.h +++ b/malloc/malloc.h @@ -224,18 +224,6 @@ extern void (*__after_morecore_hook) __MALLOC_PMT ((void)); /* Activate a standard set of debugging hooks. */ extern void __malloc_check_init __MALLOC_P ((void)); -/* Internal routines, operating on "arenas". */ -struct malloc_state; -typedef struct malloc_state *mstate; - -extern mstate _int_new_arena __MALLOC_P ((size_t __ini_size)); -extern __malloc_ptr_t _int_malloc __MALLOC_P ((mstate __m, size_t __size)); -extern void _int_free __MALLOC_P ((mstate __m, __malloc_ptr_t __ptr)); -extern __malloc_ptr_t _int_realloc __MALLOC_P ((mstate __m, - __malloc_ptr_t __ptr, - size_t __size)); -extern __malloc_ptr_t _int_memalign __MALLOC_P ((mstate __m, size_t __alignment, - size_t __size)); #ifdef __cplusplus }; /* end of extern "C" */ |