Adjust for nightly rustfmt bug

See https://github.com/rust-lang/rustfmt/issues/4528
for the bug description, namely rustfmt removes
this comment completely if it's left in the
extern block.
This commit is contained in:
Berkus Decker 2020-11-17 20:28:58 +02:00
parent 53e68bf7b3
commit 367ad5bbb2
1 changed files with 1 additions and 1 deletions

View File

@ -41,8 +41,8 @@ macro_rules! entry {
/// Totally unsafe! We're in the hardware land.
#[link_section = ".text.boot"]
unsafe fn reset() -> ! {
// Boundaries of the .bss section, provided by the linker script
extern "C" {
// Boundaries of the .bss section, provided by the linker script
static mut __BSS_START: u64;
static mut __BSS_END: u64;
}