Files
semi-libc/src/linux/reboot.c
T

9 lines
98 B
C

#include <sys/reboot.h>
#include <errno.h>
int reboot(int type)
{
errno = ENOSYS;
return -1;
}