test.c   [plain text]



int a;
int b = 5;

int foo()
{
	return a+b;
}


int entry()
{
	return foo();
}