From 2ae5e5b31a943719083dd64ee24c4200220f7ff0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 18 Feb 2021 21:04:50 +0100 Subject: Switched to default lodepng version This should be a bit faster and less buggy --- libc/inc/mem.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/inc/mem.h') diff --git a/libc/inc/mem.h b/libc/inc/mem.h index 216b939..0498d8c 100644 --- a/libc/inc/mem.h +++ b/libc/inc/mem.h @@ -11,6 +11,7 @@ void *malloc_debug(u32 size, const char *file, int line, const char *func, const void free_debug(void *ptr, const char *file, int line, const char *func, const char *inp); #define malloc(size) malloc_debug(size, __FILE__, __LINE__, __func__, #size) #define free(ptr) free_debug(ptr, __FILE__, __LINE__, __func__, #ptr) +void *realloc(void *ptr, u32 size); void *zalloc(u32 size); #ifdef kernel -- cgit v1.2.3