1foo (long long x)
2{
3  if (x--)
4    return 255;
5  return 0;
6}
7
8main ()
9{
10  printf ("%d\n", foo (0));
11}
12