kit

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

a.c (154B)


      1 /* NOBITS section: a static variable with no initializer must read as 0. */
      2 static int g;
      3 int test_main(void) { return *(volatile int*)&g == 0 ? 0 : 1; }