summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-05 16:10:09 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-05 16:10:09 -0400
commit84fa80132e423b707afa6ccb571ccdfa2577cad9 (patch)
tree2d515550c816c54c14500f185ac329f935e13590 /src
parent0d3d78ae358209165880859a6565b236888a504c (diff)
THeap: Add stubs for `heap_x{free,malloc}()`
Diffstat (limited to 'src')
-rw-r--r--src/pso/THeap.cpp8
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) {
}