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