Geoff Viola 1703a6d2c4 GHS: Fix handling of duplicate source filenames (#16046)
Green Hills MULTI project files must specify explicitly distinct object
file names for source files with the same name.
2016-04-25 10:46:09 -04:00

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;
}