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,9 +8,16 @@ extern "C"
{
#endif
int execv(const char *, char *const[]);
int execve(const char *, char *const[], char *const[]);
int execvp(const char *, char *const[]);
extern char **environ;
int execl(const char *pathname, const char *arg, ...);
int execlp(const char *file, const char *arg, ...);
int execle(const char *pathname, const char *arg, ...);
int execv(const char *pathname, char *const argv[]);
int execvp(const char *file, char *const argv[]);
int execvpe(const char *file, char *const argv[], char *const envp[]);
int execve(const char *pathname, char *const argv[], char *const envp[]);
pid_t fork(void);
#ifdef __cplusplus