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 1
1
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
2
- #![ allow( missing_docs) ]
3
2
4
3
pub mod ffi;
5
4
Original file line number Diff line number Diff line change @@ -48,7 +48,12 @@ cfg_if::cfg_if! {
48
48
#[ cfg( all( target_vendor = "fortanix" , target_env = "sgx" ) ) ]
49
49
pub mod fortanix_sgx;
50
50
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) ]
52
57
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
53
58
pub use crate :: sys:: ext as unix;
54
59
#[ cfg( target_os = "android" ) ]
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ pub mod args;
24
24
pub mod cmath;
25
25
pub mod condvar;
26
26
pub mod env;
27
- pub mod ext;
28
27
pub mod fd;
29
28
pub mod fs;
30
29
#[ path = "../unsupported/io.rs" ]
You can’t perform that action at this time.
0 commit comments