Wedson Almeida Filho | 987c0ff | 2018-06-20 16:34:38 +0100 | [diff] [blame] | 1 | #ifndef _ALLOC_H |
2 | #define _ALLOC_H | ||||
3 | |||||
4 | #include <stddef.h> | ||||
5 | |||||
6 | void halloc_init(size_t base, size_t size); | ||||
7 | void *halloc(size_t size); | ||||
8 | void hfree(void *ptr); | ||||
9 | void *halloc_aligned(size_t size, size_t align); | ||||
10 | |||||
11 | #endif /* _ALLOC_H */ |