diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-17 17:45:13 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-17 17:45:13 +0100 |
commit | 5881b4d5c1040c762599f90e091e4cc4c3abe6b1 (patch) | |
tree | 7d10f25dddcd46cd266a5f8c2a64085139651f02 /stage3/heap.h | |
parent | 2298d17186cb0e58a96d285384de431902da9b1e (diff) | |
download | cuddles-5881b4d5c1040c762599f90e091e4cc4c3abe6b1.tar.xz |
add realloc
Diffstat (limited to 'stage3/heap.h')
-rw-r--r-- | stage3/heap.h | 1 |
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 |