Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 589b38626859682dda0b4289ae4806af > files > 9

coccinelle-examples-1.0.7-2.mga7.i586.rpm

int foo(int a, int b)
{
	return a + b;
}

int bar(int a, int b, int c)
{
	return a + b + c;
}

void main(void)
{
	int res;
	int x,y,y;

	res = foo(x,y);

	res = bar(x,y,z);
}