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

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

/*
 * Test of dynamic name resolution.
 */

main ()
{
    int i;

    i = 2;
    p(3);
}

p (j)
int j;
{
    int k;

    k = j;
}