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
Update contributors list for update of alpha-vms bfd.
[binutils.git]
/
ld
/
testsuite
/
ld-elf
/
dl2.c
blob
b5cd9275dab4947993f481a4796778aa3b9fc8bc
1
#include <stdio.h>
2
3
int
foo
;
4
5
extern
void
xxx
(
void
);
6
7
void
8
bar
(
int
x
)
9
{
10
if
(
foo
==
1
)
11
printf
(
"OK1
\n
"
);
12
else if
(
foo
==
0
)
13
printf
(
"OK2
\n
"
);
14
foo
= -
1
;
15
xxx
();
16
}