mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +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;
|
||
|
}
|