]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/linux/reboot.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / 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, 0xfee1dead, 672274793, type);
7 }