#include #include #include #include #include int main() { int pid; sync(); if((pid=fork()) == 0) { reboot(0x4321fedc); _exit(0); } waitpid(pid, NULL, 0); return(0); }