File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11#![ stable( feature = "rust1" , since = "1.0.0" ) ]
2- #![ allow( missing_docs) ]
32
43pub mod ffi;
54
Original file line number Diff line number Diff line change @@ -48,7 +48,12 @@ cfg_if::cfg_if! {
4848 #[ cfg( all( target_vendor = "fortanix" , target_env = "sgx" ) ) ]
4949 pub mod fortanix_sgx;
5050
51- #[ cfg( any( unix, target_os = "hermit" ) ) ]
51+ #[ cfg( target_os = "hermit" ) ]
52+ mod hermit;
53+ #[ cfg( target_os = "hermit" ) ]
54+ pub use hermit as unix;
55+
56+ #[ cfg( unix) ]
5257 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
5358 pub use crate :: sys:: ext as unix;
5459 #[ cfg( target_os = "android" ) ]
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ pub mod args;
2424pub mod cmath;
2525pub mod condvar;
2626pub mod env;
27- pub mod ext;
2827pub mod fd;
2928pub mod fs;
3029#[ path = "../unsupported/io.rs" ]
You can’t perform that action at this time.
0 commit comments