diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-09-01 16:53:06 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-09-01 16:53:06 +0200 |
commit | 7daeebd3f49fe6d8935de25a0ad45b37cbf94b5d (patch) | |
tree | e7434b8316e2d3339cfd653845491076de7209e6 /include/malloc.h | |
parent | 6f03356237fbfb60669cc3d80cb4c6cf8924957e (diff) |
decompile window.s
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 |