Add x86_64 module to uclibc/mod.rs

This commit is contained in:
Sebastian Humenda 2017-06-03 15:44:52 +02:00
parent 09a04d8e71
commit 4d3ea348b0

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;
}