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

int __reboot(int magic1, int magic2, int cmd, void * arg);

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