repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update release readme after making 2.43.1 release
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-elf
/
weakdef1.c
blob
82642bb1be8349d6dbe468541f30c269199c9ef4
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
}