Skip to main content

osiris/uapi/
system.rs

1//! Userspace re-export of `hal::system`.
2
3use crate::hal;
4
5pub fn reset() -> ! {
6    hal::system::reset()
7}