1 #include <unistd.h>
2 #include <sys/reboot.h>
3 
main(void)4 int main(void) {
5   return(reboot(0));
6 }
7