mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-30 12:54:19 +00: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;
|
|
}
|