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