示例#1
0
int main()
{
	fun_C(500);
        printf("done looper\n");
	printf("my pid is %d\n",getpid());
        return 0;
}
void
fun_B(int x, int y, int z)
{
	int B_x=x+1, B_y=y+1, B_z=z+1;
	fun_C(B_x, B_y, B_z);
}