Add missing constant MAP_32BIT on x86_64-linux-android and i686-linux-android

This commit is contained in:
roblabla 2017-07-04 17:19:32 +02:00
parent ba8ffc8ef7
commit 0ea2040f13
2 changed files with 4 additions and 0 deletions

View File

@ -4,3 +4,5 @@ pub type wchar_t = i32;
pub const O_DIRECT: ::c_int = 0x4000;
pub const O_DIRECTORY: ::c_int = 0x10000;
pub const O_NOFOLLOW: ::c_int = 0x20000;
pub const MAP_32BIT: ::c_int = 0x40;

View File

@ -51,3 +51,5 @@ pub const SYS_gettid: ::c_long = 186;
pub const SIGSTKSZ: ::size_t = 8192;
pub const MINSIGSTKSZ: ::size_t = 2048;
pub const MAP_32BIT: ::c_int = 0x40;