Fix: no_mangle is an unsafe attribute since Rust 2024

This commit is contained in:
Philipp Oppermann
2025-03-27 15:06:17 +01:00
parent 86ffa24e8e
commit 430e2143f8

View File

@@ -3,7 +3,7 @@
use core::panic::PanicInfo; use core::panic::PanicInfo;
#[no_mangle] #[unsafe(no_mangle)]
pub extern "C" fn _start() -> ! { pub extern "C" fn _start() -> ! {
loop {} loop {}
} }