repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tcc
/
105_local_extern.c
blob
a248bb421c6192e288a26702e91cdfb5731667a1
1
extern
int
printf
(
const char
*, ...);
2
void
f
(
void
);
3
void
bar
(
void
) {
void
f
(
void
);
f
(); }
4
void
foo
(
void
) {
extern
void
f
(
void
);
f
(); }
5
void
f
(
void
) {
printf
(
"f
\n
"
); }
6
7
int
main
()
8
{
9
bar
();
10
foo
();
11
return
0
;
12
}