diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-05 16:10:09 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-05 16:10:09 -0400 |
commit | 84fa80132e423b707afa6ccb571ccdfa2577cad9 (patch) | |
tree | 2d515550c816c54c14500f185ac329f935e13590 /src/pso | |
parent | 0d3d78ae358209165880859a6565b236888a504c (diff) |
THeap: Add stubs for `heap_x{free,malloc}()`
Diffstat (limited to 'src/pso')
-rw-r--r-- | src/pso/THeap.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pso/THeap.cpp b/src/pso/THeap.cpp index 3967f95..d2da513 100644 --- a/src/pso/THeap.cpp +++ b/src/pso/THeap.cpp @@ -11,6 +11,14 @@ static const int heap_offset = 8; THeap *obj_heap; THeap *alt_heap; +void heap_xfree(void *ptr) { + +} + +void *heap_xmalloc(size_t size) { + return NULL; +} + void xfree(void *ptr) { } |