summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-05 16:09:28 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-05 16:09:28 -0400
commit0d3d78ae358209165880859a6565b236888a504c (patch)
treeeacf2a0f4f89f153f2bbfe19595af5cc573fa635 /include
parent7e037462eda6221047eefd2195539302d3b40083 (diff)
THeap: Correct typo with `heap_xfree()`'s return type
Diffstat (limited to 'include')
-rw-r--r--include/pso/THeap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pso/THeap.h b/include/pso/THeap.h
index b248bd7..60932d5 100644
--- a/include/pso/THeap.h
+++ b/include/pso/THeap.h
@@ -6,7 +6,7 @@
#include <global_types.h>
#include <stdlib.h>
-void *heap_xfree(void *ptr);
+void heap_xfree(void *ptr);
void *heap_xmalloc(size_t size);
extern THeap *obj_heap;