#include <values.h>
#include <stdio.h>
int main(int argc, char *argv[])
{
int a = -MAXINT-1, b = -1, c = a*b;
fprintf(stderr, "%d * %d = %d\n", a, b, c );
if (b) {
c = a / b;
fprintf(stderr, "%d/%d = %d\n", a, b, c );
}
return 0;
}
/*
* Regards,
* Tigran
*/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/