summaryrefslogtreecommitdiff
path: root/Tests/InterfaceLinkLibrariesDirect/order_D_poison.c
blob: d2d64e6c8f06019aad15acad4265edb66d87f36c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern void order_D_poison(void);

void order_A(void)
{
  order_D_poison();
}

void order_B(void)
{
  order_D_poison();
}

void order_C(void)
{
  order_D_poison();
}