kit

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

a.c (165B)


      1 static const char msg[] = "ok";
      2 static int counter;
      3 
      4 int kmain(void) {
      5   volatile const char* m = msg;
      6   volatile int* c = &counter;
      7   *c = (int)m[0];
      8   return 0;
      9 }