diff options
Diffstat (limited to 'include/sys/wait.h')
-rw-r--r-- | include/sys/wait.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/wait.h b/include/sys/wait.h index 67fd0c17a..ec53808db 100644 --- a/include/sys/wait.h +++ b/include/sys/wait.h @@ -84,6 +84,9 @@ typedef union # define WIFEXITED(status) __WIFEXITED(__WAIT_INT(status)) # define WIFSIGNALED(status) __WIFSIGNALED(__WAIT_INT(status)) # define WIFSTOPPED(status) __WIFSTOPPED(__WAIT_INT(status)) +# if 0 /* def __WIFCONTINUED */ +# define WIFCONTINUED(status) __WIFCONTINUED(__WAIT_INT(status)) +# endif #endif /* <stdlib.h> not included. */ #ifdef __USE_BSD |