move all OS-related code into src/os

master
edef 2015-04-16 06:42:31 -04:00
parent f7ab28de4b
commit 6f750ab484
4 changed files with 1 additions and 3 deletions

View File

@ -27,5 +27,3 @@ mod arch;
#[cfg(feature = "os")]
pub mod os;
#[cfg(feature = "os")]
mod sys;

View File

@ -4,7 +4,7 @@ extern crate std;
use core::prelude::*;
use self::std::io::Error as IoError;
use stack;
use sys;
mod sys;
pub struct StackSource;