1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:27:45 +00:00

LibC: Implement execle()

This commit is contained in:
Jelle Raaijmakers 2021-06-04 01:47:17 +02:00 committed by Andreas Kling
parent 0e990a4be8
commit 7f4a1bc11e
2 changed files with 21 additions and 0 deletions

View file

@ -49,6 +49,7 @@ int execve(const char* filename, char* const argv[], char* const envp[]);
int execvpe(const char* filename, char* const argv[], char* const envp[]);
int execvp(const char* filename, char* const argv[]);
int execl(const char* filename, const char* arg, ...);
int execle(const char* filename, const char* arg, ...);
int execlp(const char* filename, const char* arg, ...);
int chroot(const char* path);
int chroot_with_mount_flags(const char* path, int mount_flags);