mirror of
https://github.com/Noratrieb/portability.git
synced 2026-01-14 15:55:04 +01:00
10 lines
141 B
Rust
10 lines
141 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
#[panic_handler]
|
|
fn handle_panic(_: &core::panic::PanicInfo<'_>) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn main() {}
|