File tree Expand file tree Collapse file tree 15 files changed +10
-21
lines changed Expand file tree Collapse file tree 15 files changed +10
-21
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ cfg_if:: cfg_if! {
2+ if #[ cfg( target_os = "windows" ) ] {
3+ mod windows;
4+ pub use windows:: * ;
5+ } else {
6+ mod builtins;
7+ pub use builtins:: * ;
8+ }
9+ }
File renamed without changes.
Original file line number Diff line number Diff line change 33/// descriptors.
44mod pal;
55
6+ pub mod cmath;
67mod personality;
78
89// FIXME(117276): remove this, move feature implementations into individual
Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ use crate::os::raw::c_char;
1919
2020pub mod alloc;
2121pub mod args;
22- #[ path = "../unix/cmath.rs" ]
23- pub mod cmath;
2422pub mod env;
2523pub mod fd;
2624pub mod fs;
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ mod waitqueue;
1313
1414pub mod alloc;
1515pub mod args;
16- #[ path = "../unix/cmath.rs" ]
17- pub mod cmath;
1816pub mod env;
1917pub mod fd;
2018#[ path = "../unsupported/fs.rs" ]
Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ mod itron {
2121pub mod alloc;
2222#[ path = "../unsupported/args.rs" ]
2323pub mod args;
24- #[ path = "../unix/cmath.rs" ]
25- pub mod cmath;
2624pub mod env;
2725// `error` is `pub(crate)` so that it can be accessed by `itron/error.rs` as
2826// `crate::sys::error`
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ pub use self::rand::hashmap_random_keys;
1111pub mod alloc;
1212#[ path = "../unsupported/args.rs" ]
1313pub mod args;
14- #[ path = "../unix/cmath.rs" ]
15- pub mod cmath;
1614#[ path = "../unsupported/env.rs" ]
1715pub mod env;
1816pub mod locks;
Original file line number Diff line number Diff line change 1414
1515pub mod alloc;
1616pub mod args;
17- #[ path = "../unix/cmath.rs" ]
18- pub mod cmath;
1917pub mod env;
2018#[ path = "../unsupported/fs.rs" ]
2119pub mod fs;
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ pub mod weak;
1111pub mod alloc;
1212pub mod android;
1313pub mod args;
14- #[ path = "../unix/cmath.rs" ]
15- pub mod cmath;
1614pub mod env;
1715pub mod fd;
1816pub mod fs;
You can’t perform that action at this time.
0 commit comments