mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
16 lines
163 B
C
16 lines
163 B
C
#include <unistd.h>
|
|
|
|
int check = 0;
|
|
|
|
static void __attribute__((constructor)) init(void)
|
|
{
|
|
if (check > 0)
|
|
_exit(1);
|
|
|
|
check++;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|