2.9BSD/usr/include/misc.h

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

/*
 * structure to access an
 * integer in bytes
 */
struct
{
	char	lobyte;
	char	hibyte;
};

/*
 * structure to access an integer
 */
struct
{
	int	integ;
};

/*
 * structure to access a long as integers
 */
struct {
	int	hiword;
	int	loword;
};

/*
 *	structure to access an unsigned
 */
struct {
	unsigned	unsignd;
};