• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

a()1 __attribute__ ((visibility ("default"))) int a() { return 0; }
b()2 __attribute__ ((visibility ("protected"))) int b() { return 1; }
c()3 __attribute__ ((visibility ("hidden"))) int c() { return 2; }
d()4 __attribute__ ((visibility ("internal"))) int d() { return 3; }
5