summaryrefslogtreecommitdiff
path: root/stage3/heap.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-17 17:45:13 +0100
committerLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-17 17:45:13 +0100
commit5881b4d5c1040c762599f90e091e4cc4c3abe6b1 (patch)
tree7d10f25dddcd46cd266a5f8c2a64085139651f02 /stage3/heap.h
parent2298d17186cb0e58a96d285384de431902da9b1e (diff)
downloadcuddles-5881b4d5c1040c762599f90e091e4cc4c3abe6b1.tar.xz
add realloc
Diffstat (limited to 'stage3/heap.h')
-rw-r--r--stage3/heap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stage3/heap.h b/stage3/heap.h
index bf02e43..39bd70d 100644
--- a/stage3/heap.h
+++ b/stage3/heap.h
@@ -12,5 +12,6 @@ void heap_add_region(MemRegion *region);
void *try_malloc(usize size);
void *malloc(usize siz);
void free(void *ptr);
+void *realloc(void *ptr, usize size);
#endif