summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/reboot.c
blob: 4210685047233296740d03609713ace24d7247c6 (plain)
1
2
3
4
5
6
7
8
#include <sys/reboot.h>

int __reboot(unsigned int magic1, unsigned int magic2, int cmd);

int reboot(int cmd)
{
  return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd);
}