expose malloc/free to apps through libc-shim stdlib.h
This commit is contained in:
parent
e85d774245
commit
34303edd4e
|
@ -1,14 +1,20 @@
|
|||
#ifndef _STDLIB_H
|
||||
#define _STDLIB_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define abort(...) OC_ABORT(__VA_ARGS__)
|
||||
|
||||
int abs(int);
|
||||
int abs(int);
|
||||
|
||||
void* malloc(size_t);
|
||||
void* realloc(void*, size_t);
|
||||
void* calloc(size_t count, size_t size);
|
||||
void free(void*);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue