You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
392 B
26 lines
392 B
#ifndef SYSROOT_MALLOC_H_
|
|
#define SYSROOT_MALLOC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define __NEED_size_t
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
void* malloc(size_t);
|
|
void* calloc(size_t, size_t);
|
|
void* realloc(void*, size_t);
|
|
void free(void*);
|
|
void* valloc(size_t);
|
|
void* memalign(size_t, size_t);
|
|
|
|
size_t malloc_usable_size(void*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SYSROOT_MALLOC_H_
|