• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sys/reboot.h>
2 #include "syscall.h"
3 
__reboot(int type)4 int __reboot(int type)
5 {
6 	return syscall(SYS_reboot, RB_MAGIC1, RB_MAGIC2, type);
7 }
8 weak_alias(__reboot, reboot);
9