Skip to content

Commit

Permalink
Allow rustc data structures compile to android
Browse files Browse the repository at this point in the history
flock structure is defined in asm*/fcntl.h. This file on android is
generated from the linux kernel source, so they are the same.
  • Loading branch information
malbarbo committed Feb 10, 2017
1 parent bc524d3 commit a8364ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_data_structures/flock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit a8364ac

Please sign in to comment.