diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2021-11-02 22:50:09 +0100 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2021-11-02 22:50:09 +0100 |
| commit | f575a0dd796106af502e8693870c49af5bee2a5d (patch) | |
| tree | 3c26583662ab92d948b1182a8ede1f4d8194f54b /src/include/stdlib.h | |
| parent | 2a56405579be6dc341c503420e40cb30c5144a35 (diff) | |
Hosted GCC Cross-Compiler
Diffstat (limited to 'src/include/stdlib.h')
| -rw-r--r-- | src/include/stdlib.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h new file mode 100644 index 0000000..a0afe38 --- /dev/null +++ b/src/include/stdlib.h @@ -0,0 +1,15 @@ +#ifndef _STDLIB_H +#define _STDLIB_H +#ifdef __cplusplus +extern "C" { +#endif +void abort(void); +int atexit(void (*)(void)); +int atoi(const char*); +void free(void*); +char* getenv(const char*); +void* malloc(size_t); +#ifdef __cplusplus +} +#endif +#endif |
