1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
f() { unsigned b = 0; if (b > ~0U) b = ~0U; return b; } main() { if (f()!=0) abort(); exit (0); }