11 lines
149 B
C
11 lines
149 B
C
#include <stdio.h>
|
|
|
|
extern void *__executable_start;
|
|
|
|
int
|
|
main()
|
|
{
|
|
if ((void **) &main >= &__executable_start)
|
|
printf ("OK\n");
|
|
return 0;
|
|
}
|