1 use crate::backend::c;
2 
3 pub(crate) use c::{
4     WCONTINUED, WEXITSTATUS, WIFCONTINUED, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG,
5     WTERMSIG, WUNTRACED,
6 };
7 
8 #[cfg(not(any(target_os = "openbsd", target_os = "redox", target_os = "wasi")))]
9 pub(crate) use c::{WEXITED, WNOWAIT, WSTOPPED};
10