CMake/Tests/GhsMultiDuplicateSourceFile.../main.c

10 lines
116 B
C

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