diff options
Diffstat (limited to 'api/libc/stdlib.h')
| -rw-r--r-- | api/libc/stdlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/api/libc/stdlib.h b/api/libc/stdlib.h index 76a78eb..d1f3d3b 100644 --- a/api/libc/stdlib.h +++ b/api/libc/stdlib.h @@ -3,4 +3,7 @@ #include <stddef.h> size_t mbstowcs(wchar_t *dst, const char *src, size_t length); +void *malloc(size_t size); +void *calloc(size_t count, size_t size); +void free(void *block); |
