File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 13
13
//! The `std::sys` module is the abstracted interface through which
14
14
//! `std` talks to the underlying operating system. It has different
15
15
//! implementations for different operating system families, today
16
- //! just Unix and Windows.
16
+ //! just Unix and Windows, and initial support for Redox .
17
17
//!
18
18
//! The centralization of platform-specific code in this module is
19
19
//! enforced by the "platform abstraction layer" tidy script in
20
- //! `tools/tidy/pal.rs`.
20
+ //! `tools/tidy/src/ pal.rs`.
21
21
//!
22
22
//! This module is closely related to the platform-independent system
23
23
//! integration code in `std::sys_common`. See that module's
34
34
35
35
pub use self :: imp:: * ;
36
36
37
- #[ cfg( target_os = "redox" ) ]
38
- #[ path = "redox/mod.rs" ]
39
- mod imp;
40
-
41
37
#[ cfg( unix) ]
42
38
#[ path = "unix/mod.rs" ]
43
39
mod imp;
44
40
45
41
#[ cfg( windows) ]
46
42
#[ path = "windows/mod.rs" ]
47
43
mod imp;
44
+
45
+ #[ cfg( target_os = "redox" ) ]
46
+ #[ path = "redox/mod.rs" ]
47
+ mod imp;
You can’t perform that action at this time.
0 commit comments