2024-04-14 22:45:38 +02:00

11 lines
96 B
C

int foo();
int bar();
int main(void)
{
if (foo() != bar()) {
return 1;
}
return 0;
}