1bar (a)
2{
3  return (a == 0);
4}
5
6foo (a)
7     int a;
8{
9  if ((a & (1 << 26)) >= 0)
10    return 1;
11  else
12    return 2;
13}
14