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

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

typedef struct proc *proc_p;

struct proc {
    int a;
    int b;
};

main ()
{
    struct proc p;

    p.a = 3;
    p.b = 4;
}