nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

chkbiofl.c (148B)


      1 int main(void)
      2 {
      3  unsigned int a = 0x80000000, b = 0x80000000, c;
      4  return !__builtin_add_overflow(a, b, &c) && !__builtin_mul_overflow(a, b, &c);
      5 }