Skip to content

Commit 4ff646b

Browse files
committed
Merge branch 'clone_common_type' of https://github.com/fiveop/libc
2 parents 42cacf4 + a7ce06c commit 4ff646b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/unix/notbsd/linux/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,12 @@ pub const EFD_SEMAPHORE: ::c_int = 0x1;
384384

385385
pub const NCCS: usize = 32;
386386

387-
pub const CLONE_NEWUTS: ::c_uint = 0x04000000;
388-
pub const CLONE_NEWIPC: ::c_uint = 0x08000000;
389-
pub const CLONE_NEWUSER: ::c_uint = 0x10000000;
390-
pub const CLONE_NEWPID: ::c_uint = 0x20000000;
391-
pub const CLONE_NEWNET: ::c_uint = 0x40000000;
392-
pub const CLONE_IO: ::c_uint = 0x80000000;
387+
pub const CLONE_NEWUTS: ::c_int = 0x04000000;
388+
pub const CLONE_NEWIPC: ::c_int = 0x08000000;
389+
pub const CLONE_NEWUSER: ::c_int = 0x10000000;
390+
pub const CLONE_NEWPID: ::c_int = 0x20000000;
391+
pub const CLONE_NEWNET: ::c_int = 0x40000000;
392+
pub const CLONE_IO: ::c_int = 0x80000000;
393393

394394
extern {
395395
pub fn shm_open(name: *const c_char, oflag: ::c_int,

0 commit comments

Comments
 (0)