autoconf: Integer Overflow

1 
1 13.2 Integer Overflow
1 =====================
1 
1 In practice many portable C programs assume that signed integer
1 overflow wraps around reliably using two's complement arithmetic.  Yet
1 the C standard says that program behavior is undefined on overflow, and
1 in a few cases C programs do not work on some modern implementations
1 because their overflows do not wrap around as their authors expected.
1 Conversely, in signed integer remainder, the C standard requires
1 overflow behavior that is commonly not implemented.
1 

Menu