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-elf
/
pr11138-2.c
blob
ccca280cbfacb5c3ef67d37da1a3e89804064f19
1
#include <stdio.h>
2
3
extern
void
foo
(
void
);
4
5
void
6
bar
(
void
)
7
{
8
printf
(
"MAIN bar
\n
"
);
9
}
10
11
int
12
main
(
void
)
13
{
14
bar
();
15
foo
();
16
return
0
;
17
}