int foo(void)
{
	return 100;
}

main()
{
	int x;

	x = foo();
}

_main()
{
}