/* UNISRC_ID: @(#)misc.h 26.1 */ /* * structure to access an * integer in bytes */ struct { char hibyte; char lobyte; }; /* * 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; };