rust-profanos 1.0.3

A lib to be able to code in rust into profanOS
Documentation
1
2
3
4
5
6
7
use crate::libs::libc::_exit_c;

pub fn exit(id: u8) -> !{
    unsafe {
        _exit_c(id);
    }
}