Rollup merge of #39724 - malbarbo:android, r=alexcrichton

Allow rustc data structures compile to android

flock structure is defined in asm*/fcntl.h. This file on android is
generated from the linux kernel source, so they are the same.
This commit is contained in:
Corey Farwell 2017-02-10 23:41:39 -05:00 committed by GitHub
commit 0e6b370929

View File

@ -27,7 +27,7 @@ mod imp {
use std::io;
use libc;
#[cfg(target_os = "linux")]
#[cfg(any(target_os = "linux", target_os = "android"))]
mod os {
use libc;