musl-tcc/src/linux/reboot.c

8 lines
129 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/reboot.h>
#include "syscall.h"
int reboot(int type)
{
return syscall(SYS_reboot, 0xfee1dead, 672274793, type);
}