commit | 6e4beb6ef1d1b0a67ccb24c19c8ad3ac1a9d3d16 | [log] [tgz] |
---|---|---|
author | Kelvin Ly <kelvin.ly1618@gmail.com> | Mon Apr 24 21:08:24 2017 -0400 |
committer | Kelvin Ly <kelvin.ly1618@gmail.com> | Mon Apr 24 21:08:24 2017 -0400 |
tree | 15df99867bbaa65ff40830337daaf05379de2ded | |
parent | 2a9b6470d620f1d810958d9a070dbc443b52110e [diff] [blame] |
Restructure with separate uclibc branch
diff --git a/src/unix/mod.rs b/src/unix/mod.rs index 15152eb..5916028 100644 --- a/src/unix/mod.rs +++ b/src/unix/mod.rs
@@ -837,7 +837,10 @@ } cfg_if! { - if #[cfg(any(target_os = "linux", + if #[cfg(target_env = "uclibc")] { + mod uclibc; + pub use self::uclibc::*; + } else if #[cfg(any(target_os = "linux", target_os = "android", target_os = "emscripten", target_os = "fuchsia"))] {