4.4BSD/usr/src/old/dbx/tests/cc/stkcmds.c

Compare this file to the similar file:
Show the results in this format:


int i;

p2 (i) int i;
{
    if (i < 5) {
	p2(i+1);
    }
}

p1 (i) int i;
{
    p2(i+1);
}

main ()
{
    i = 0;
    p1(i+1);
}