1 /************** Machine (and compiler) dependent definitions. **************
2  *
3  *	For Siemens MX300
4  *	From: Bill Wohler <wohler@sap-ag.de>
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 
15 /*
16  *	Define NO_SIGINTERRUPT on BSD based systems which don't have
17  *	a siginterrupt() function, but provides an SV_INTERRUPT flag
18  *	in <signal.h>.
19  */
20 
21 #define NO_SIGINTERRUPT	/* */
22 
23 #define NETWORK_BYTE_ORDER	/* */
24