1 2 3 4 5 6 7 8
#include <linux/reboot.h> #include <sys/reboot.h> #include <syscall.h> int reboot(int op) { return syscall(reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, op); }