toaruos/userspace/core/reboot.c
2013-02-10 01:36:35 -08:00

16 lines
250 B
C

/*
* reboot
*
* Reboot the system.
*/
#include <stdio.h>
#include <syscall.h>
int main(int argc, char ** argv) {
printf("uid is %d\n", syscall_getuid());
if (syscall_reboot() < 0) {
printf("%s: need to be root.\n", argv[0]);
}
return 1;
}