Fix build

This commit is contained in:
Dong Zhou 2015-11-29 22:24:10 -05:00
parent 51ed574b13
commit 188bef6133
1 changed files with 2 additions and 2 deletions

View File

@ -256,8 +256,8 @@ pub const ST_IMMUTABLE: ::c_ulong = 512;
pub const ST_NOATIME: ::c_ulong = 1024;
pub const ST_NODIRATIME: ::c_ulong = 2048;
pub const RTLD_NEXT: ::c_long = -1;
pub const RTLD_DEFAULT: ::c_long = 0;
pub const RTLD_NEXT: *mut ::c_void = -1i64 as *mut ::c_void;
pub const RTLD_DEFAULT: *mut ::c_void = 0i64 as *mut ::c_void;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub const MAP_32BIT: ::c_int = 0x0040;