shlib.c 268 B

1234567891011121314
  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. __attribute__((visibility("default")))
  10. void shlib_test() {
  11. extern void test();
  12. test();
  13. }