main.c   [plain text]




void foo()
{

}


void bar()
{
	foo();
}



int main()
{
	bar();
	return 0;
}