mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 23:51:34 +00:00
9 lines
98 B
C
9 lines
98 B
C
|
#include <sys/reboot.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int reboot(int type)
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return -1;
|
||
|
}
|