4.1cBSD/usr/src/ucb/dbx/test/bf.c

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

main()
{
    struct {
	int first;
	int second;
	int a : 8;
	int b : 8;
	int c;
    } x;

    x.a = 2;
    x.b = 10;
    x.c = 1;
}