mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 12:08:15 +01:00
wutcrt: Forward newlib _exit to the coreinit.rpl _Exit
This commit is contained in:
parent
b6c024fc5c
commit
ea009ce10b
@ -37,3 +37,12 @@ __fini_wut()
|
|||||||
__fini_wut_newlib();
|
__fini_wut_newlib();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Forward newlib _exit to the coreinit.rpl _Exit
|
||||||
|
extern void _Exit(int status);
|
||||||
|
|
||||||
|
void
|
||||||
|
_exit(int status)
|
||||||
|
{
|
||||||
|
_Exit(status);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user