mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
27 lines
446 B
C
27 lines
446 B
C
#ifndef _STDLIB_H
|
|
#define _STDLIB_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void abort(void);
|
|
int atexit(void (*function)(void));
|
|
void exit(int status);
|
|
int atoi(const char *nptr);
|
|
char *getenv(const char *name);
|
|
|
|
void *malloc(size_t Size);
|
|
void *realloc(void *Address, size_t Size);
|
|
void *calloc(size_t Count, size_t Size);
|
|
void free(void *Address);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|