1 /************** Machine (and compiler) dependent definitions. **************
2  *
3  *	These defs for GCC 1.34 on a UNIX-PC.  Written by Steve
4  *	Simmons (scs@lokkur.dexter.mi.us).  Shoot me, not Kim.
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 #ifdef NETWORK_DATABASE
16 YOU LOSE ON NETWORK_DATABASE
17 #endif
18