Files
Arquivotheca.SunOS-4.1.4/sccs/hdr/misc.h
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

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;
};