1 /************** Machine (and compiler) dependent definitions. **************
2  *
3  *	This file is for the Symmetry.
4  *	Use with s-dynix3-0.h.
5  */
6 
7 
8 
9 /*      MACHINE TYPE	DEFINED TYPE		VALUE RANGE	*/
10 
11 typedef unsigned char	int8;		/*        0 ..     255 */
12 typedef short		int16;		/*  -10,000 ..  10,000 */
13 typedef long		int32;		/* -100,000 .. 100,000 */
14 typedef unsigned long	uint32;		/* 	  0 ..  2^31-1 */
15 
16 /*
17  * The Symmetry C compiler lacks vprintf/vsprintf and strcspn
18  */
19 
20 #define STRCSPN
21 
22 /* enable parallel make hook in xmakefile */
23 #define PARALLEL_MAKE
24 
25 /*
26  *	Not in network byte order on the 386
27  */
28 
29 #undef NETWORK_BYTE_ORDER	/* */
30 #ifdef NETWORK_DATABASE
31 #include <netinet/in.h>
32 #endif
33