vers7a.c 293 B

1234567891011121314151617181920
  1. /*
  2. * Test supplied by Ulrich. Verify that we can correctly force 'a'
  3. * to local scope.
  4. */
  5. #include "vers.h"
  6. int
  7. __a_internal (int e)
  8. {
  9. return e + 10;
  10. }
  11. int
  12. __b_internal (int e)
  13. {
  14. return e + 42;
  15. }
  16. FUNC_SYMVER(__a_internal, hide_a@@VERS_1);
  17. FUNC_SYMVER(__b_internal, show_b@@VERS_1);