1234567891011121314151617 |
- #include <sys/syscall.h>
- #include <sys/reboot.h>
- #define __NR__reboot __NR_reboot
- static __inline__ _syscall3(int, _reboot, int, magic, int, magic2, int, flag)
- int reboot(int flag)
- {
- return (_reboot((int) 0xfee1dead, 672274793, flag));
- }
|