aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/dll-7a.c
blob: 80caf32174299fa71c5d8d9ecf2de7f7b4ca9b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
extern void i1();
extern void i3();
extern void i4();
extern void i5();

extern void e1();
extern void e3();
extern void e4();
extern void e5();

int main () {
  i1();
  i3();
  i4();
  i5();

  e1();
  e3();
  e4();
  e5();
}