Skip to content
Snippets Groups Projects
Commit 1b06018c authored by Radu Popescu's avatar Radu Popescu
Browse files

Adding missing WIFCONTINUED function on FreeBSD systems

parent 43f1d3f7
No related merge requests found
......@@ -754,6 +754,10 @@ pub const NETGRAPHDISC: ::c_int = 0x6;
pub const SEM_FAILED: *mut sem_t = 0 as *mut sem_t;
f! {
pub fn WIFCONTINUED(status: ::c_int) -> ::c_int {
status & 0o23
}
pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
status >> 8
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment