reboot.c 129 B

1234567
  1. #include <sys/reboot.h>
  2. #include "syscall.h"
  3. int reboot(int type)
  4. {
  5. return syscall(SYS_reboot, 0xfee1dead, 672274793, type);
  6. }