Files
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

18 lines
215 B
C

#ifndef _GLIBC_MALLOC_H
#define _GLIBC_MALLOC_H
#ifdef __cplusplus
extern "C" {
#endif
#include <bits/size_t.h>
size_t malloc_usable_size(void *__ptr);
#ifdef __cplusplus
}
#endif
#endif /* _GLIBC_MALLOC_H */