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-elfweak
/
aliasmain.c
blob
524a0471f65b0790e4f84821c5f7278e7d638055
1
#include <stdio.h>
2
3
extern
int
*
psym1
, *
psym2
;
4
extern
int
strongsym
;
5
6
int
7
main
(
void
)
8
{
9
printf
(
"value via psym1: %d, via psym2: %d, strong %d
\n
"
,
10
*
psym1
, *
psym2
,
strongsym
);
11
return
0
;
12
}