]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pragma-re-3.c
Update copyright years.
[thirdparty/gcc.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 }