main.c 241 B

1234567891011121314
  1. /*
  2. * Copyright 2023 Yury Gribov
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Use of this source code is governed by MIT license that can be
  7. * found in the LICENSE.txt file.
  8. */
  9. extern int foo999();
  10. int main() {
  11. return foo999() == 999 ? 0 : 1;
  12. }