diff options
Diffstat (limited to 'userland/libc/malloc/malloc.h')
-rw-r--r-- | userland/libc/malloc/malloc.h | 1 |
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 |