summaryrefslogtreecommitdiffstats
path: root/Tests/LinkLineOrder/NoDepE.c
blob: 6e33c7b936b426a089e506d2b329467432b45b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* depends on NoDepF */
void NoDepF_func(void);

void NoDepE_func(void)
{
  static int firstcall = 1;
  if (firstcall) {
    firstcall = 0;
    NoDepF_func();
  }
}