diff options
author | kennytm <kennytm@gmail.com> | 2015-03-14 04:34:24 +0800 |
---|---|---|
committer | Carl Lerche <me@carllerche.com> | 2015-03-13 16:40:28 -0700 |
commit | c5bc33200c8eb3563784c0e18dc37060049247cd (patch) | |
tree | 8715258b03eef8fcc6a62c82582b537ccb219e44 /src/sys/ioctl.rs | |
parent | 386dfd6f4770770b7721e7fa5195b4c993aa3e4b (diff) | |
download | nix-c5bc33200c8eb3563784c0e18dc37060049247cd.zip |
Amend some files to make it compile on arm-linux-androideabi.
Diffstat (limited to 'src/sys/ioctl.rs')
-rw-r--r-- | src/sys/ioctl.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/ioctl.rs b/src/sys/ioctl.rs index 847733f2..516b29bc 100644 --- a/src/sys/ioctl.rs +++ b/src/sys/ioctl.rs @@ -22,7 +22,8 @@ mod ffi { pub const TIOCGWINSZ: c_ulong = 0x40087468; } - #[cfg(target_os = "linux")] + #[cfg(any(target_os = "linux", + all(target_os = "android", not(target_arch = "mips"))))] pub mod os { use libc::c_int; pub const TIOCGWINSZ: c_int = 0x5413; |