fix stubbed-out reboot call
This commit is contained in:
parent
4717bfec70
commit
4f5ba9211e
1 changed files with 2 additions and 3 deletions
|
|
@ -1,8 +1,7 @@
|
|||
#include <sys/reboot.h>
|
||||
#include <errno.h>
|
||||
#include "syscall.h"
|
||||
|
||||
int reboot(int type)
|
||||
{
|
||||
errno = ENOSYS;
|
||||
return -1;
|
||||
return syscall(SYS_reboot, type);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue