hotfix compilation error for _exit()

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

View file

@ -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")));