Home | History | Annotate | Download | only in ld-plugin
      1 #include <stdio.h>
      2 
      3 extern char _etext[];
      4 
      5 int main(void)
      6 {
      7   printf ("%p: %d\n", _etext, _etext[0]);
      8   return 0;
      9 }
     10