1int
2foo (a, b)
3int *a,  *b;
4{
5  int x;
6  *a = (*b + 1);
7  x = *b;
8  if ((int) x)
9    return 1;
10  else
11    return 0;
12}
13