3BSD/usr/src/cmd/sdb/z.c

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

struct z{
	int i,j,k;
} ;

main() {
	struct z a;

	a.i = 3;
	a.j = 4;
	a.k = 5;

	sub(a,12);

	abort();
}

sub(y,m)
struct z y; {
	y.i++;
}