Green Hills MULTI project files must specify explicitly distinct object file names for source files with the same name.
10 lines
116 B
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;
|
|
}
|