mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 12:07:45 +00:00
LibC: Implement wait()
This is a simple convenience wrapper over waitpid().
This commit is contained in:
parent
fde8f7f538
commit
bec646c0bb
2 changed files with 6 additions and 0 deletions
|
@ -66,6 +66,7 @@ ssize_t read(int fd, void* buf, size_t count);
|
|||
ssize_t write(int fd, const void* buf, size_t count);
|
||||
int close(int fd);
|
||||
pid_t waitpid(pid_t, int* wstatus, int options);
|
||||
pid_t wait(int* wstatus);
|
||||
int chdir(const char* path);
|
||||
char* getcwd(char* buffer, size_t size);
|
||||
char* getwd(char* buffer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue