34 lines
376 B
C
34 lines
376 B
C
/* @(#)misc.h 1.1 94/10/31 SMI; from System III */
|
|
/*
|
|
* 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 {
|
|
short hiword;
|
|
short loword;
|
|
};
|
|
|
|
/*
|
|
* structure to access an unsigned
|
|
*/
|
|
struct {
|
|
unsigned unsignd;
|
|
};
|