main.c 77 B

123456789
  1. int foo();
  2. int main()
  3. {
  4. if (foo() == 0) {
  5. return 1;
  6. }
  7. return 0;
  8. }