kit

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

6_5_57_unsigned_wrap_add.c (88B)


      1 int test_main(void) {
      2   unsigned x = 0xFFFFFFFFU;
      3   x += 1;
      4   return (int)(x & 0xff);
      5 }