vers2.c 219 B

12345678910111213
  1. /*
  2. * Test function. This is built into a shared library, and references a
  3. * versioned symbol foo that is in test.so.
  4. */
  5. #include <stdio.h>
  6. extern int show_foo ();
  7. void
  8. show_xyzzy()
  9. {
  10. printf("%d", show_foo());
  11. }