File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1313//! The `std::sys` module is the abstracted interface through which
1414//! `std` talks to the underlying operating system. It has different
1515//! implementations for different operating system families, today
16- //! just Unix and Windows.
16+ //! just Unix and Windows, and initial support for Redox .
1717//!
1818//! The centralization of platform-specific code in this module is
1919//! enforced by the "platform abstraction layer" tidy script in
20- //! `tools/tidy/pal.rs`.
20+ //! `tools/tidy/src/ pal.rs`.
2121//!
2222//! This module is closely related to the platform-independent system
2323//! integration code in `std::sys_common`. See that module's
3434
3535pub use self :: imp:: * ;
3636
37- #[ cfg( target_os = "redox" ) ]
38- #[ path = "redox/mod.rs" ]
39- mod imp;
40-
4137#[ cfg( unix) ]
4238#[ path = "unix/mod.rs" ]
4339mod imp;
4440
4541#[ cfg( windows) ]
4642#[ path = "windows/mod.rs" ]
4743mod 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