Auto merge of #607 - humenda:master, r=alexcrichton

Add x86_64 module to uclibc/mod.rs
This commit is contained in:
bors 2017-06-04 17:59:28 +00:00
commit 5e208ed9b2

View File

@ -1759,6 +1759,9 @@ cfg_if! {
if #[cfg(target_arch = "mips")] {
mod mips;
pub use self::mips::*;
} else if #[cfg(target_arch = "x86_64")] {
mod x86_64;
pub use self::x86_64::*;
} else {
pub use unsupported_target;
}