blob: b3fc110cfce64a63fb3ee158485d74cd847e2308 [file] [log] [blame]
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001#ifndef _ALLOC_H
2#define _ALLOC_H
3
4#include <stddef.h>
5
6void halloc_init(size_t base, size_t size);
7void *halloc(size_t size);
8void hfree(void *ptr);
9void *halloc_aligned(size_t size, size_t align);
10
11#endif /* _ALLOC_H */