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
* doc/Makefile.am (AM_MAKEINFOFLAGS, TEXI2DVI): Include
[binutils.git]
/
ld
/
testsuite
/
ld-elf
/
dl6.c
blob
f655ca6ef335d4e95af7bd5b3efe3b7a6c6d161b
1
#include <stdio.h>
2
3
int
bar
=
10
;
4
5
void
6
foo
(
void
)
7
{
8
if
(
bar
==
10
)
9
printf
(
"bar is in DSO.
\n
"
);
10
else if
(
bar
== -
20
)
11
printf
(
"bar is in main.
\n
"
);
12
else
13
printf
(
"FAIL
\n
"
);
14
}