summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibC/stdlib.h')
-rw-r--r--Userland/Libraries/LibC/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/stdlib.h b/Userland/Libraries/LibC/stdlib.h
index abab2a44cb..cfb7e19729 100644
--- a/Userland/Libraries/LibC/stdlib.h
+++ b/Userland/Libraries/LibC/stdlib.h
@@ -20,7 +20,7 @@ __attribute__((noreturn)) void _abort(void);
__attribute__((malloc)) __attribute__((alloc_size(1))) void* malloc(size_t);
__attribute__((malloc)) __attribute__((alloc_size(1, 2))) void* calloc(size_t nmemb, size_t);
-size_t malloc_size(void*);
+size_t malloc_size(void const*);
size_t malloc_good_size(size_t);
void serenity_dump_malloc_stats(void);
void free(void*);