fix broken reboot wrapper (syscall needs extra silly magic arguments...)

This commit is contained in:
Rich Felker 2011-12-23 19:13:48 -05:00
parent e5d78fe8df
commit c07daf0f2f
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
int reboot(int type) int reboot(int type)
{ {
return syscall(SYS_reboot, type); return syscall(SYS_reboot, 0xfee1dead, 672274793, type);
} }