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
Typo fix in most recent entry.
[binutils.git]
/
ld
/
testsuite
/
ld-elf
/
comm1.c
blob
c553d86f4afdfb4652d37675555307abfa05e33f
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
foo
;
5
void
bar
(
void
);
6
7
int
8
main
()
9
{
10
if
(
foo
!=
0
)
11
abort
();
12
foo
=
200
;
13
bar
();
14
if
(
foo
==
200
)
15
printf
(
"PASS
\n
"
);
16
return
0
;
17
}