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