mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
8 lines
84 B
C
8 lines
84 B
C
int test(int a);
|
|
int inner(int a);
|
|
|
|
int main(void)
|
|
{
|
|
return test(0) + inner(0);
|
|
}
|