repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Automatic date update in version.in
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-size
/
size-10a.c
blob
47e6a2fc50933d3627757b2f892d53a07777c2b2
1
#include <stdio.h>
2
3
extern
int
bar_size
;
4
extern
char
*
get_bar
(
int
,
int
);
5
6
int
7
main
()
8
{
9
char
*
bar
=
get_bar
(
2
,
20
);
10
if
(
bar_size
==
10
&&
bar
[
2
] ==
20
)
11
printf
(
"OK
\n
"
);
12
13
return
0
;
14
}