summaryrefslogtreecommitdiff
path: root/userland/libc/malloc
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-15 21:12:44 +0100
committerAnton Kling <anton@kling.gg>2023-11-15 21:40:13 +0100
commitc9358cdeac4522922df46fb6e3ab6a517203ec99 (patch)
treea033b4386f1aa825c06d549d3a3bd8f4c0156ddd /userland/libc/malloc
parent6713b6a6c112f0de92c63e349d100fc4bd89138e (diff)
LibC: Add getdelim and getline
Diffstat (limited to 'userland/libc/malloc')
-rw-r--r--userland/libc/malloc/malloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/malloc/malloc.h b/userland/libc/malloc/malloc.h
index 082d8ad..596dbe5 100644
--- a/userland/libc/malloc/malloc.h
+++ b/userland/libc/malloc/malloc.h
@@ -5,5 +5,6 @@
void *malloc(size_t s);
void *calloc(size_t nelem, size_t elsize);
+void *realloc(void *ptr, size_t size);
void free(void *p);
#endif