diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-28 17:49:52 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-28 17:49:52 -0400 |
commit | 3d7ea9dfb8deb95709f0a4441950a3c7ca486e5b (patch) | |
tree | 286006671a4872cdc603f9090d492e609a8cebe1 /include/heap.h | |
parent | 38350db4c7086a54c9f7f66a9adf1f79d09b1475 (diff) |
Clean up filesystem.c and create headers
Diffstat (limited to 'include/heap.h')
-rw-r--r-- | include/heap.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/heap.h b/include/heap.h new file mode 100644 index 00000000..36b79122 --- /dev/null +++ b/include/heap.h @@ -0,0 +1,8 @@ +#ifndef POKEDIAMOND_HEAP_H +#define POKEDIAMOND_HEAP_H + +void * FUN_02016998(u32 heap_id, u32 size); +void * FUN_020169D8(u32 heap_id, u32 size); +void FUN_02016A18(void * ptr); + +#endif //POKEDIAMOND_HEAP_H |