1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:47:35 +00:00

LibC: Add vsnprintf(), snprintf(), execvp() and abs().

This commit is contained in:
Andreas Kling 2019-01-23 06:35:34 +01:00
parent db35d59994
commit 69a3aecf6b
6 changed files with 41 additions and 0 deletions

View file

@ -11,6 +11,7 @@ extern char** environ;
inline int getpagesize() { return 4096; }
pid_t fork();
int execve(const char* filename, const char** argv, const char** envp);
int execvp(const char* filename, const char** argv);
void sync();
void _exit(int status);
pid_t getsid(pid_t);