Skip to main content

strat9_kernel/shell/commands/sys/
reboot.rs

1use super::*;
2
3/// Reboot machine.
4pub fn cmd_reboot(args: &[String]) -> Result<(), ShellError> {
5    super::cmd_reboot_impl(args)
6}