File tree 3 files changed +3
-7
lines changed
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,12 @@ pub mod args;
7
7
mod common;
8
8
#[ path = "../unsupported/env.rs" ]
9
9
pub 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;
16
10
#[ path = "../unsupported/os.rs" ]
17
11
pub mod os;
18
12
#[ path = "../unsupported/pipe.rs" ]
19
13
pub mod pipe;
20
14
#[ path = "../unsupported/process.rs" ]
21
15
pub mod process;
22
- pub mod stdio;
23
16
#[ path = "../unsupported/thread.rs" ]
24
17
pub mod thread;
25
18
#[ path = "../unsupported/time.rs" ]
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ cfg_if::cfg_if! {
19
19
} else if #[ cfg( target_os = "teeos" ) ] {
20
20
mod teeos;
21
21
pub use teeos:: * ;
22
+ } else if #[ cfg( target_os = "trusty" ) ] {
23
+ mod trusty;
24
+ pub use trusty:: * ;
22
25
} else if #[ cfg( target_os = "uefi" ) ] {
23
26
mod uefi;
24
27
pub use uefi:: * ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments