commit | 4ddaf1f4c1675785cc8cc66c9ce7e5f7e7745789 | [log] [tgz] |
---|---|---|
author | Jeremy Soller <jackpot51@gmail.com> | Thu Nov 03 16:53:22 2016 -0600 |
committer | Jeremy Soller <jackpot51@gmail.com> | Thu Nov 03 16:53:22 2016 -0600 |
tree | d07ad65915ce1e212d5580224e512ef8d9e3e14b | |
parent | 15950baa0afd0a632e71b08f16094ae040bc2a51 [diff] [blame] |
Minimal liblibc for Redox
diff --git a/src/lib.rs b/src/lib.rs index dcc4791..2a16fad 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -265,6 +265,9 @@ if #[cfg(windows)] { mod windows; pub use windows::*; + } else if #[cfg(redox)] { + mod redox; + pub use redox::*; } else if #[cfg(unix)] { mod unix; pub use unix::*;