Merge sys_common::rt into rt

This commit is contained in:
bjorn3
2021-09-16 14:28:21 +02:00
parent 2b5ddf36fd
commit 6f6bb16718
5 changed files with 89 additions and 92 deletions

View File

@@ -518,8 +518,12 @@ pub mod task {
pub use alloc::task::*;
}
// Platform-abstraction modules
// The runtime entry point and a few unstable public functions used by the
// compiler
#[macro_use]
pub mod rt;
// Platform-abstraction modules
mod sys_common;
mod sys;
@@ -528,10 +532,6 @@ pub mod alloc;
// Private support modules
mod panicking;
// The runtime entry point and a few unstable public functions used by the
// compiler
pub mod rt;
#[path = "../../backtrace/src/lib.rs"]
#[allow(dead_code, unused_attributes)]
mod backtrace_rs;