1
2
3
4
5
use linux;

pub fn exit(code: i32) -> ! {
    unsafe { linux::exit(code) }
}