9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
18 lines
215 B
C
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 */
|
|
|