use umount2 syscall for umount (new targets lack old 1-arg umount)
[musl] / src / linux / reboot.c
1 #include <sys/reboot.h>
2 #include <errno.h>
3
4 int reboot(int type)
5 {
6         errno = ENOSYS;
7         return -1;
8 }