Add alloc functions to stdlib header

This commit is contained in:
Alex 2023-05-22 01:47:38 +03:00
parent 07e24dccda
commit fedccbfd79
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -18,4 +18,18 @@
#ifndef _STDLIB_H
#define _STDLIB_H
#ifdef __cplusplus
extern "C"
{
#endif
void *malloc(__SIZE_TYPE__ Size);
void *calloc(__SIZE_TYPE__ n, __SIZE_TYPE__ Size);
void *realloc(void *Address, __SIZE_TYPE__ Size);
void free(void *Address);
#ifdef __cplusplus
}
#endif
#endif // !_STDLIB_H