kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

dso_dep.c (202B)


      1 int tier1_dso_data = 7;
      2 
      3 __attribute__((noinline)) int tier1_dso_value(int x) {
      4     return x + tier1_dso_data;
      5 }
      6 
      7 __attribute__((visibility("hidden"))) int tier1_dso_hidden(int x) {
      8     return x * 3;
      9 }