Properly implement STT_COMMON
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / weakdef1.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 extern int foo_alias;
5 extern void bar (void);
6
7 int
8 main (void)
9 {
10 bar ();
11 if (foo_alias != -1)
12 abort ();
13 printf ("PASS\n");
14 return 0;
15 }
This page took 0.029753 seconds and 4 git commands to generate.