diff options
Diffstat (limited to 'allocator.c')
-rw-r--r-- | allocator.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/allocator.c b/allocator.c index 4394201..202b238 100644 --- a/allocator.c +++ b/allocator.c @@ -1,3 +1,6 @@ +static void *err_malloc(size_t bytes); +static void *err_calloc(size_t n, size_t sz); +static void *err_realloc(void *prev, size_t new_size); #define NO_ALLOCATOR 1 /* useful for debugging; valgrind (maybe) checks writing past the end of a malloc, but that won't work with an allocator */ /* number of bytes a page hold, not including the header */ #define PAGE_BYTES (16384 - sizeof(Page)) |