Skip to content

Commit

Permalink
Move Redox support into unix module
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed May 4, 2019
1 parent 39ca01c commit eb75c48
Show file tree
Hide file tree
Showing 7 changed files with 604 additions and 549 deletions.
4 changes: 1 addition & 3 deletions src/lib.rs
Expand Up @@ -26,6 +26,7 @@
#![deny(missing_copy_implementations, safe_packed_borrows)]
#![no_std]
#![cfg_attr(feature = "rustc-dep-of-std", no_core)]
#![cfg_attr(target_os = "redox", feature(static_nobundle))]

#[macro_use]
mod macros;
Expand Down Expand Up @@ -91,9 +92,6 @@ cfg_if! {
if #[cfg(windows)] {
mod windows;
pub use windows::*;
} else if #[cfg(target_os = "redox")] {
mod redox;
pub use redox::*;
} else if #[cfg(target_os = "cloudabi")] {
mod cloudabi;
pub use cloudabi::*;
Expand Down
6 changes: 0 additions & 6 deletions src/redox/align.rs

This file was deleted.

0 comments on commit eb75c48

Please sign in to comment.