4.4BSD/usr/src/old/sdb/TESTS/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);

	printf("Hello sailor\n");
	abort();
}

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