File tree Expand file tree Collapse file tree 6 files changed +5
-3
lines changed Expand file tree Collapse file tree 6 files changed +5
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ pub mod alloc;
Original file line number Diff line number Diff line change 2222
2323#![ allow( missing_debug_implementations) ]
2424
25+ mod common;
26+
2527cfg_if:: cfg_if! {
2628 if #[ cfg( target_os = "vxworks" ) ] {
2729 mod vxworks;
Original file line number Diff line number Diff line change 11use crate :: alloc:: { GlobalAlloc , Layout , System } ;
22use crate :: ptr;
3- use crate :: sys_common :: alloc:: { realloc_fallback, MIN_ALIGN } ;
3+ use crate :: sys :: common :: alloc:: { realloc_fallback, MIN_ALIGN } ;
44
55#[ stable( feature = "alloc_system_type" , since = "1.28.0" ) ]
66unsafe impl GlobalAlloc for System {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use crate::ffi::c_void;
55use crate :: ptr;
66use crate :: sync:: atomic:: { AtomicPtr , Ordering } ;
77use crate :: sys:: c;
8- use crate :: sys_common :: alloc:: { realloc_fallback, MIN_ALIGN } ;
8+ use crate :: sys :: common :: alloc:: { realloc_fallback, MIN_ALIGN } ;
99
1010#[ cfg( test) ]
1111mod tests;
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ macro_rules! rtunwrap {
4646 } ;
4747}
4848
49- pub mod alloc;
5049pub mod at_exit_imp;
5150pub mod backtrace;
5251pub mod bytestring;
You can’t perform that action at this time.
0 commit comments