Clippy fixes
This commit is contained in:
@@ -11,12 +11,12 @@ pub const WUNTRACED: c_int = 2;
|
||||
pub const WSTOPPED: c_int = 2;
|
||||
pub const WEXITED: c_int = 4;
|
||||
pub const WCONTINUED: c_int = 8;
|
||||
pub const WNOWAIT: c_int = 0x1000000;
|
||||
pub const WNOWAIT: c_int = 0x0100_0000;
|
||||
|
||||
pub const __WNOTHREAD: c_int = 0x20000000;
|
||||
pub const __WALL: c_int = 0x40000000;
|
||||
pub const __WNOTHREAD: c_int = 0x2000_0000;
|
||||
pub const __WALL: c_int = 0x4000_0000;
|
||||
#[allow(overflowing_literals)]
|
||||
pub const __WCLONE: c_int = 0x80000000;
|
||||
pub const __WCLONE: c_int = 0x8000_0000;
|
||||
|
||||
#[no_mangle]
|
||||
pub unsafe extern "C" fn wait(stat_loc: *mut c_int) -> pid_t {
|
||||
|
||||
Reference in New Issue
Block a user