Automatic date update in version.in
[binutils-gdb.git] / ld / testsuite / ld-elfweak / aliasmain.c
blob524a0471f65b0790e4f84821c5f7278e7d638055
1 #include <stdio.h>
3 extern int *psym1, *psym2;
4 extern int strongsym;
6 int
7 main (void)
9 printf ("value via psym1: %d, via psym2: %d, strong %d\n",
10 *psym1, *psym2, strongsym);
11 return 0;