mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
10 lines
77 B
C++
10 lines
77 B
C++
int foo();
|
|
|
|
int main()
|
|
{
|
|
if (foo() == 0) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|