add setxid.c for new set*id() framework. missed in last commit.
[oweals/musl.git] / 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 }