fix: mark _Exit noreturn to avoid a warning

This commit is contained in:
Lephenixnoir 2024-07-06 08:47:01 +02:00
parent 26cdf5f9d8
commit 83d0ab858e
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -1,6 +1,7 @@
#include <unistd.h>
/* Exit immediately, bypassing exit handlers or signal handlers. */
__attribute__((noreturn))
extern void _Exit(int status);
/* Alias to _Exit. */