Home | History | Annotate | Download | only in ld-elfvers
      1 #include <stdio.h>
      2 
      3 extern int show_foo ();
      4 
      5 int
      6 main ()
      7 {
      8   printf ("%d\n", show_foo ());
      9   return 0;
     10 }
     11