main.c 304 B

12345678910111213141516171819
  1. /*
  2. * Copyright 2017-2022 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. int main() {
  10. #ifdef SHLIB
  11. extern void shlib_test();
  12. shlib_test();
  13. #else
  14. extern void test();
  15. test();
  16. #endif
  17. return 0;
  18. }