mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
hotfix compilation error for _exit()
This commit is contained in:
parent
1a87c1eae2
commit
14e7e2364b
1 changed files with 3 additions and 0 deletions
|
@ -1,4 +1,7 @@
|
|||
#include <unistd.h>
|
||||
|
||||
/* Exit immediately, bypassing exit handlers or signal handlers. */
|
||||
extern void _Exit(int status);
|
||||
|
||||
/* Alias to _Exit. */
|
||||
void _exit(int status) __attribute__((alias("_Exit")));
|
||||
|
|
Loading…
Reference in a new issue