Use better test for usable compiler in ld testsuite.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfweak / aliasmain.c
1 #include <stdio.h>
2
3 extern int *psym1, *psym2;
4 extern int strongsym;
5
6 int
7 main (void)
8 {
9 printf ("value via psym1: %d, via psym2: %d, strong %d\n",
10 *psym1, *psym2, strongsym);
11 return 0;
12 }
This page took 0.03 seconds and 4 git commands to generate.