1987-04-29 10:22:07 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*
|
|
|
|
* Author: Ceriel J.H. Jacobs
|
|
|
|
*/
|
|
|
|
|
1986-04-07 17:40:38 +00:00
|
|
|
/* C O N S T A N T S F O R E X P R E S S I O N H A N D L I N G */
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
1986-04-07 17:40:38 +00:00
|
|
|
extern long
|
|
|
|
mach_long_sign; /* sign bit of the machine long */
|
|
|
|
extern int
|
|
|
|
mach_long_size; /* size of long on this machine == sizeof(long) */
|
|
|
|
extern arith
|
|
|
|
max_int, /* maximum integer on target machine */
|
1986-04-09 18:14:49 +00:00
|
|
|
max_unsigned, /* maximum unsigned on target machine */
|
1987-07-21 13:54:33 +00:00
|
|
|
max_longint; /* maximum longint on target machine */
|
|
|
|
extern unsigned int
|
1986-04-09 18:14:49 +00:00
|
|
|
wrd_bits; /* Number of bits in a word */
|