blob: e31fb567c1c597d8c854d5ed34bcba59f7aa7c3d [file] [log] [blame]
foo (a, b)
{
int t;
while (b < 0)
{
t = a;
a = b;
b = t;
}
return a + b;
}