Update libc

This commit is contained in:
Alex
2023-05-03 06:40:31 +03:00
parent f01eed8dd2
commit cf3a5599a4
18 changed files with 530 additions and 50 deletions

View File

@ -8,6 +8,9 @@ extern "C"
{
#endif
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
void abort(void);
int atexit(void (*function)(void));
void exit(int status);
@ -22,6 +25,8 @@ extern "C"
double atof(const char *nptr);
extern void perror(const char *__s);
#ifdef __cplusplus
}
#endif