summaryrefslogtreecommitdiffstats
path: root/Tests/ImportedSameName/main.c
blob: 33196b74ade7ded20a2b56d53ada350f463df893 (plain)
1
2
3
4
5
6
7
8
9
extern void a(void);
extern void b(void);

int main(void)
{
  a();
  b();
  return 0;
}