toaruos/userspace/reboot.c
Kevin Lange c88d6dcb4f Add or update the heading comments for user apps.
Adds useful descriptions to ones that were lacking them, updates ones
that were innacurate, etc.
2012-07-06 21:08:28 -07:00

18 lines
278 B
C

/*
* reboot
*
* Reboot the system.
*/
#include <stdio.h>
#include <syscall.h>
DEFN_SYSCALL0(reboot, 26);
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;
}