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
Automatic date update in version.in
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-x86-64
/
pr19784c.c
blob
eb2c9d0c2afb08b01a6527d43b203639829b131c
1
#include <stdio.h>
2
3
extern
void
abort
(
void
);
4
extern
int
foo
(
int
)
__attribute__
((
visibility
(
"hidden"
)));
5
6
void
bar
(
void
)
7
{
8
if
(
foo
(
5
) !=
5
)
9
abort
();
10
printf
(
"PASS
\n
"
);
11
}