File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -423,11 +423,6 @@ pub use core_collections::vec;
423
423
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
424
424
pub use std_unicode:: char;
425
425
426
- // Reexport the start module on platforms that provide it
427
- #[ unstable( feature = "start_fn" , issue="0" ) ]
428
- #[ cfg( target_os = "redox" ) ]
429
- pub use sys:: start:: * ;
430
-
431
426
pub mod f32;
432
427
pub mod f64;
433
428
Original file line number Diff line number Diff line change 22
22
issue = "0" ) ]
23
23
#![ doc( hidden) ]
24
24
25
-
26
-
27
25
// Reexport some of our utilities which are expected by other crates.
28
26
pub use panicking:: { begin_panic, begin_panic_fmt, update_panic_count} ;
29
27
28
+ // Reexport the start module on platforms that provide it
29
+ #[ unstable( feature = "start_fn" , issue="0" ) ]
30
+ #[ cfg( target_os = "redox" ) ]
31
+ pub use sys:: start:: * ;
32
+
30
33
#[ cfg( not( test) ) ]
31
34
#[ lang = "start" ]
32
35
fn lang_start ( main : * const u8 , argc : isize , argv : * const * const u8 ) -> isize {
You can’t perform that action at this time.
0 commit comments