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
/
pr14323-1.c
blob
9f63f4ce954adece4208b2dc785e6fe0fb968294
1
#include <stdlib.h>
2
#include <stdio.h>
3
4
extern
int
foo_alias
;
5
extern
char
*
bar
();
6
7
int
8
main
()
9
{
10
if
(
foo_alias
!=
0
)
11
abort
();
12
bar
();
13
if
(
foo_alias
!= -
1
)
14
abort
();
15
printf
(
"PASS
\n
"
);
16
return
0
;
17
}