xref: /haiku/src/system/kernel/slab/slab_private.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
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