add previously-missing ios646.h
[musl] / include / bits / wait.h
1 #define WNOHANG    1
2 #define WUNTRACED  2
3
4 #define WSTOPPED   2
5 #define WEXITED    4
6 #define WCONTINUED 8
7 #define WNOWAIT    0x1000000
8
9 #if defined(__XOPEN_SOURCE) || defined(__GNU_SOURCE)
10 #define P_ALL  0
11 #define P_PID  1
12 #define P_PGID 2
13 #endif