/* * reboot.c */ #include #include #include /* This provides the one-argument glibc-ish version of reboot. The full four-argument system call is available as __reboot(). */ int reboot(int flag) { return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, flag, NULL); }