1#ifndef _LIBC_SYS_WAIT_H
2#define _LIBC_SYS_WAIT_H
3
4#include <bits/sys/wait.h>
5#include <fcntl.h>
6#include <stddef.h>
7#include <sys/cdefs.h>
8#include <sys/types.h>
9
10__BEGIN_DECLS
11
12int wait(int pid);
13int waitpid(int pid, int* status, int options);
14
15__END_DECLS
16
17#endif // _LIBC_SYS_WAIT_H