diff options
Diffstat (limited to 'byterun/memory.h')
-rw-r--r-- | byterun/memory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/byterun/memory.h b/byterun/memory.h index a5ffb6019..d97547e3c 100644 --- a/byterun/memory.h +++ b/byterun/memory.h @@ -36,9 +36,9 @@ CAMLextern value check_urgent_gc (value); CAMLextern void * stat_alloc (asize_t); /* Size in bytes. */ CAMLextern void stat_free (void *); CAMLextern void * stat_resize (void *, asize_t); /* Size in bytes. */ -header_t *alloc_for_heap (asize_t request); /* Size in bytes. */ -void free_for_heap (header_t *mem); -int add_to_heap (header_t *mem); +char *alloc_for_heap (asize_t request); /* Size in bytes. */ +void free_for_heap (char *mem); +int add_to_heap (char *mem); color_t allocation_color (void *hp); /* void shrink_heap (char *); Only used in compact.c */ |