Skip to content

Commit eb75c48

Browse files
committed
Move Redox support into unix module
1 parent 39ca01c commit eb75c48

File tree

7 files changed

+604
-549
lines changed

7 files changed

+604
-549
lines changed

src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#![deny(missing_copy_implementations, safe_packed_borrows)]
2727
#![no_std]
2828
#![cfg_attr(feature = "rustc-dep-of-std", no_core)]
29+
#![cfg_attr(target_os = "redox", feature(static_nobundle))]
2930

3031
#[macro_use]
3132
mod macros;
@@ -91,9 +92,6 @@ cfg_if! {
9192
if #[cfg(windows)] {
9293
mod windows;
9394
pub use windows::*;
94-
} else if #[cfg(target_os = "redox")] {
95-
mod redox;
96-
pub use redox::*;
9795
} else if #[cfg(target_os = "cloudabi")] {
9896
mod cloudabi;
9997
pub use cloudabi::*;

src/redox/align.rs

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)