/* * reboot.c * Author: Allen Porter * * Compile for iphone: * $ arm-apple-darwin-cc -Wall -o reboot reboot.c */ #include #include #include int main(int argc, char* argv[]) { printf("rebooting... please wait."); return reboot(RB_AUTOBOOT); }