mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-29 07:47:50 +00:00
23 lines
298 B
C
23 lines
298 B
C
#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
|