Update include directory

This commit is contained in:
Alex
2022-12-07 17:16:48 +02:00
parent fb075aa713
commit 096564b586
7 changed files with 112 additions and 0 deletions

22
libc/include/stdlib.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef _STDLIB_H
#define _STDLIB_H
#include <stddef.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