diff options
Diffstat (limited to 'src/user/lib/include/sys/wait.h')
-rw-r--r-- | src/user/lib/include/sys/wait.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user/lib/include/sys/wait.h b/src/user/lib/include/sys/wait.h index c71418c..cff407e 100644 --- a/src/user/lib/include/sys/wait.h +++ b/src/user/lib/include/sys/wait.h @@ -2,8 +2,8 @@ #include <sys/types.h> #define WIFSTOPPED(x) 0 -#define WEXITSTATUS(x) 0 -#define WIFEXITED(x) 0 +#define WEXITSTATUS(x) ((x)&0xFF) +#define WIFEXITED(x) 1 #define WSTOPSIG(x) 0 #define WTERMSIG(x) 0 |