hotfix compilation error for _exit() (again)

This commit is contained in:
Yann MAGNIN 2024-05-12 13:14:34 +02:00 committed by Lephenixnoir
parent 14e7e2364b
commit d6f709f36e
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -4,4 +4,7 @@
extern void _Exit(int status); extern void _Exit(int status);
/* Alias to _Exit. */ /* Alias to _Exit. */
void _exit(int status) __attribute__((alias("_Exit"))); void _exit(int status)
{
_Exit(status);
};