diff options
author | Sergey Bugaev <bugaevc@serenityos.org> | 2020-02-03 18:51:48 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-03 19:50:45 +0100 |
commit | a6e7797a31423170005f5d92e83bbb671ee4111b (patch) | |
tree | a9469e9338c7caf7e713599aaf285cb2cf4047a7 /Libraries/LibC/sys/wait.h | |
parent | 4e79a60b78d46869e3edb52d8eb4fc0e557e80d3 (diff) | |
download | serenity-a6e7797a31423170005f5d92e83bbb671ee4111b.zip |
LibC: Move waitpid() to sys/wait.h
That's where POSIX says it should be.
Diffstat (limited to 'Libraries/LibC/sys/wait.h')
-rw-r--r-- | Libraries/LibC/sys/wait.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibC/sys/wait.h b/Libraries/LibC/sys/wait.h index 71b03c8430..2a2fc162a1 100644 --- a/Libraries/LibC/sys/wait.h +++ b/Libraries/LibC/sys/wait.h @@ -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 |