repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git]
/
ld
/
testsuite
/
ld-gc
/
pr11218-2.c
blob
5f158026f83b570255edca143612fb201a10bbb4
1
extern
void
foo_in_so
(
void
);
2
extern
void
unresolved_detected_at_runtime_not_at_linktime
(
void
);
3
4
void
call_unresolved
(
void
)
5
{
6
unresolved_detected_at_runtime_not_at_linktime
();
7
}
8
9
int
main
(
int
argc
,
char
*
argv
[])
10
{
11
foo_in_so
();
12
13
return
0
;
14
}