Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 86875e5f16bea6b454c492e84ceda4db > files > 3

coccinelle-examples-0.2.3-0.rc6.3.fc14.x86_64.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);
}