8 lines
98 B
C
8 lines
98 B
C
#include <sys/reboot.h>
|
|
#include <errno.h>
|
|
|
|
int reboot(int type)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|