blob: c04ff033e14665dda4210359efd4bc091e0c7b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/************** Machine (and compiler) dependent definitions. **************
*
* Define appropriate types for the following ranges of integer
* variables. These are processor & compiler dependent, but the
* distributed definitions will probably work on most systems.
*/
/* MACHINE TYPE DEFINED TYPE VALUE RANGE */
typedef unsigned char int8; /* 0 .. 255 */
typedef short int16; /* -10,000 .. 10,000 */
typedef int int32; /* -100,000 .. 100,000 */
typedef unsigned int uint32; /* 0 .. 2^31-1 */
/*
* Define NETWORK_BYTE_ORDER if the machine's longs are
* already in network byte order.
*/
#undef NETWORK_BYTE_ORDER
|