blob: 772c85910ecdbb2d26f07688688dc0ae54ec9db6 [file] [log] [blame]
/*
* reboot.c
*/
#include <unistd.h>
#include <sys/reboot.h>
#include <sys/syscall.h>
/* This provides the one-argument glibc-ish version of reboot.
The full four-argument system call is available as __reboot(). */
int reboot(int flag)
{
return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, flag, NULL);
}