summaryrefslogtreecommitdiffstats
path: root/Tests/GhsMultiDuplicateSourceFilenames/main.c
blob: 301a32ea6d46da8e4b50c0664756eca44ab65557 (plain)
1
2
3
4
5
6
7
8
9
int test_a(void);
int test_b(void);

int main(int argc, char* argv[])
{
  test_a();
  test_b();
  return 0;
}