240dac5aee1c56817648c8881a2327e728da3724
[musl] / src / linux / reboot.c
1 #include <sys/reboot.h>
2 #include "syscall.h"
3
4 int reboot(int type)
5 {
6         return syscall(SYS_reboot, type);
7 }