summaryrefslogtreecommitdiffstats
path: root/Tests/LinkLineOrder/Exec2.c
blob: d60c94e913f864b3430a23d7777f99c642809736 (plain)
1
2
3
4
5
6
7
8
/* Directly depends on Two */
void TwoFunc();

int main(void)
{
  TwoFunc();
  return 0;
}