1foo (ip, a, x)
2     int a;
3     int *ip;
4     int x;
5{
6  if (a >= 1)
7    x++;
8  return x;
9}
10