sandbox/rust-os/bareos/src/main.rs

17 lines
239 B
Rust
Raw Normal View History

2018-08-15 02:03:48 +00:00
#![feature(panic_implementation)]
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_implementation]
#[no_mangle]
pub fn panic(_info: &PanicInfo) -> ! {
loop {}
}
#[no_mangle]
pub extern "C" fn _start() -> ! {
loop {}
}