1 /************** Machine (and compiler) dependent definitions. **************
2  *
3  *	For IBM/RT 6150
4  *	From: marcel@duteca.tudelft.nl (Marcel J.E. Mol)
5  */
6 
7 /*      MACHINE TYPE	DEFINED TYPE		VALUE RANGE	*/
8 
9 typedef unsigned char	int8;		/*        0 ..     255 */
10 typedef short		int16;		/*  -10,000 ..  10,000 */
11 typedef long		int32;		/* -100,000 .. 100,000 */
12 typedef unsigned long	uint32;		/* 	  0 ..  2^31-1 */
13 
14 #define NETWORK_BYTE_ORDER	/* */
15