kit

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

a.c (167B)


      1 /* STB_WEAK defined: read a weak variable from b.c; it is present. */
      2 extern __attribute__((weak)) int weak_val;
      3 int test_main(void) { return weak_val == 7 ? 0 : 1; }