File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,12 @@ pub mod args;
77mod common;
88#[ path = "../unsupported/env.rs" ]
99pub mod env;
10- #[ path = "../unsupported/fs.rs" ]
11- pub mod fs;
12- #[ path = "../unsupported/io.rs" ]
13- pub mod io;
14- #[ path = "../unsupported/net.rs" ]
15- pub mod net;
1610#[ path = "../unsupported/os.rs" ]
1711pub mod os;
1812#[ path = "../unsupported/pipe.rs" ]
1913pub mod pipe;
2014#[ path = "../unsupported/process.rs" ]
2115pub mod process;
22- pub mod stdio;
2316#[ path = "../unsupported/thread.rs" ]
2417pub mod thread;
2518#[ path = "../unsupported/time.rs" ]
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ cfg_if::cfg_if! {
1919 } else if #[ cfg( target_os = "teeos" ) ] {
2020 mod teeos;
2121 pub use teeos:: * ;
22+ } else if #[ cfg( target_os = "trusty" ) ] {
23+ mod trusty;
24+ pub use trusty:: * ;
2225 } else if #[ cfg( target_os = "uefi" ) ] {
2326 mod uefi;
2427 pub use uefi:: * ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments