2022-11-12 21:04:47 +02:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-04 02:59:48 +02:00
|
|
|
#include <stddef.h>
|
2023-04-05 23:58:40 +03:00
|
|
|
#include <sys/cdefs.h>
|
2022-11-12 21:04:47 +02:00
|
|
|
|
2022-11-14 00:27:11 +02:00
|
|
|
__BEGIN_DECLS
|
2022-11-12 21:04:47 +02:00
|
|
|
|
2023-04-05 23:58:40 +03:00
|
|
|
[[noreturn]] void abort(void);
|
|
|
|
|
|
|
|
int abs(int);
|
|
|
|
|
|
|
|
int atexit(void(*)(void));
|
|
|
|
int atoi(const char*);
|
|
|
|
|
|
|
|
char* getenv(const char*);
|
2022-11-12 21:04:47 +02:00
|
|
|
|
2023-03-04 02:59:48 +02:00
|
|
|
void* malloc(size_t);
|
2023-04-05 23:58:40 +03:00
|
|
|
void* calloc(size_t, size_t);
|
2023-03-04 02:59:48 +02:00
|
|
|
void free(void*);
|
|
|
|
|
2022-11-14 00:27:11 +02:00
|
|
|
__END_DECLS
|