1 /* 2 * Copyright 2007, Hugo Santos. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Hugo Santos, hugosantos@gmail.com 7 */ 8 #ifndef _SLAB_PRIVATE_H_ 9 #define _SLAB_PRIVATE_H_ 10 11 #include <stddef.h> 12 13 void *block_alloc(size_t size); 14 void block_free(void *block); 15 void block_allocator_init_boot(); 16 void block_allocator_init_rest(); 17 18 #endif 19 20