kit

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

a.c (175B)


      1 static unsigned long long big[1400];
      2 
      3 int test_main(void) {
      4   if (big[700] != 0) return 1;
      5   if (big[1000] != 0) return 2;
      6   big[1000] = 5;
      7   return big[1000] == 5 ? 0 : 3;
      8 }