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-plugin
/
pr26163b.c
blob
5524b4e3d9767a52fe70f3d3bede2e41dbf689b1
1
#include <stdio.h>
2
3
int
counter
;
4
extern
void
f
(
void
);
5
6
void
7
real_g
(
void
)
8
{
9
counter
++;
10
}
11
12
int
main
()
13
{
14
real_g
();
15
f
();
16
if
(
counter
==
3
)
17
printf
(
"PASS
\n
"
);
18
return
0
;
19
}