projects
/
platform
/
upstream
/
gcc48.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove unused files
[platform/upstream/gcc48.git]
/
gcc
/
testsuite
/
gcc.dg
/
pragma-re-3.c
1
2
#pragma redefine_extname f1 f
3
#pragma redefine_extname g1 g
4
5
void f() {
6
extern int f1();
7
f1();
8
}
9
10
void g() {
11
g1();
12
}
13
14
int main () {
15
f();
16
g();
17
}