1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:27:43 +00:00

LibC: Move waitpid() to sys/wait.h

That's where POSIX says it should be.
This commit is contained in:
Sergey Bugaev 2020-02-03 18:51:48 +03:00 committed by Andreas Kling
parent 4e79a60b78
commit a6e7797a31
6 changed files with 10 additions and 8 deletions

View file

@ -44,6 +44,7 @@ __BEGIN_DECLS
#define WEXITED 4
#define WCONTINUED 8
pid_t waitpid(pid_t, int* wstatus, int options);
pid_t wait(int* wstatus);
__END_DECLS