mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
12 lines
149 B
C
12 lines
149 B
C
#include <stdio.h>
|
|
|
|
extern void *__executable_start;
|
|
|
|
int
|
|
main()
|
|
{
|
|
if ((void **) &main >= &__executable_start)
|
|
printf ("OK\n");
|
|
return 0;
|
|
}
|