921e5a0eb4
From-SVN: r14840
11 lines
106 B
C
11 lines
106 B
C
foo (a, b)
|
|
{
|
|
b++;
|
|
if (a <= b)
|
|
if ((int) a < (int) b)
|
|
b--;
|
|
else
|
|
b++;
|
|
return b;
|
|
}
|