mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
11 lines
92 B
C
11 lines
92 B
C
int foo();
|
|
int bar();
|
|
|
|
int main()
|
|
{
|
|
if (foo() != bar()) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|