11 lines
96 B
C
11 lines
96 B
C
int foo();
|
|
int bar();
|
|
|
|
int main(void)
|
|
{
|
|
if (foo() != bar()) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|