Disable Rust's main function

This commit is contained in:
Philipp Oppermann
2023-03-25 18:54:30 +01:00
parent c3d16e0021
commit 1838cfcad3

View File

@@ -1,9 +1,8 @@
#![no_std]
#![no_main]
use core::panic::PanicInfo;
fn main() {}
/// This function is called on panic.
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {