1 /* 2 * An example program. 3 */ 4 #include <unistd.h> 5 6 int 7 main() 8 { 9 reboot(RB_POWEROFF); 10 return 0; /* avoid compiler warnings */ 11 }