mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-24 01:43:22 +00:00
13 lines
261 B
Plaintext
13 lines
261 B
Plaintext
#![no_std]
|
|
#![no_main]
|
|
|
|
extern crate #TARGET_NAME#;
|
|
|
|
#[panic_handler]
|
|
fn panic(info: &core::panic::PanicInfo) -> ! {
|
|
extern "Rust" {
|
|
pub fn __ostd_panic_handler(info: &core::panic::PanicInfo) -> !;
|
|
}
|
|
unsafe { __ostd_panic_handler(info); }
|
|
}
|