diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-05 15:53:52 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-05 15:53:52 -0400 |
commit | 51b344f8b673157d42c500aef39fbbc57e98850f (patch) | |
tree | 3b26ed7b38aeaec6b8db43804945e560460b28c1 /src/pso | |
parent | de60c27a2c10e1ba341b5ca5069f76334b905ad1 (diff) |
THeap: Add global heaps
Diffstat (limited to 'src/pso')
-rw-r--r-- | src/pso/THeap.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pso/THeap.cpp b/src/pso/THeap.cpp index 2ed961a..3967f95 100644 --- a/src/pso/THeap.cpp +++ b/src/pso/THeap.cpp @@ -8,6 +8,9 @@ static const int heap_offset = 8; +THeap *obj_heap; +THeap *alt_heap; + void xfree(void *ptr) { } |