remove ugly warning-suppression hack from crypt - this invokes UB!
[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 }