summaryrefslogtreecommitdiffstats
path: root/Tests/InterfaceLinkLibrariesDirect/order_E_poison.c
blob: 7d8b53e95f2cfc3d1175a9fd724bf8360f1f14da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
extern void order_E_poison(void);

void order_A(void)
{
  order_E_poison();
}

void order_B(void)
{
  order_E_poison();
}

void order_C(void)
{
  order_E_poison();
}

void order_D(void)
{
  order_E_poison();
}