diff options
Diffstat (limited to 'include/malloc.h')
-rw-r--r-- | include/malloc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/malloc.h b/include/malloc.h new file mode 100644 index 000000000..bd870ede3 --- /dev/null +++ b/include/malloc.h @@ -0,0 +1,8 @@ +#ifndef GUARD_MALLOC_H +#define GUARD_MALLOC_H + +void *Alloc(u32 size); +void *AllocZeroed(u32 size); +void Free(void *pointer); + +#endif // GUARD_MALLOC_H |