ack/lang/m2/comp/Parameters

66 lines
1.6 KiB
Plaintext
Raw Normal View History

1986-04-17 09:28:09 +00:00
!File: errout.h
#define ERROUT STDERR /* file pointer for writing messages */
#define MAXERR_LINE 5 /* maximum number of error messages given
on the same input line. */
!File: idfsize.h
1986-08-26 14:33:24 +00:00
#define IDFSIZE 128 /* maximum significant length of an identifier */
1986-04-17 09:28:09 +00:00
!File: numsize.h
#define NUMSIZE 256 /* maximum length of a numeric constant */
!File: strsize.h
#define ISTRSIZE 32 /* minimum number of bytes allocated for
storing a string */
#define RSTRSIZE 8 /* step size in enlarging the memory for
the storage of a string */
!File: target_sizes.h
#define MAXSIZE 8 /* the maximum of the SZ_* constants */
/* target machine sizes */
#define SZ_CHAR (arith)1
#define SZ_SHORT (arith)2
#define SZ_WORD (arith)4
#define SZ_INT (arith)4
#define SZ_LONG (arith)4
#define SZ_FLOAT (arith)4
#define SZ_DOUBLE (arith)8
#define SZ_POINTER (arith)4
/* target machine alignment requirements */
#define AL_CHAR 1
1986-10-06 20:36:30 +00:00
#define AL_SHORT (int)SZ_SHORT
#define AL_WORD (int)SZ_WORD
#define AL_INT (int)SZ_WORD
#define AL_LONG (int)SZ_WORD
#define AL_FLOAT (int)SZ_WORD
#define AL_DOUBLE (int)SZ_WORD
#define AL_POINTER (int)SZ_WORD
1986-04-17 09:28:09 +00:00
#define AL_STRUCT 1
#define AL_UNION 1
1986-11-05 14:33:00 +00:00
!File: debugcst.h
1986-04-17 09:28:09 +00:00
#define DEBUG 1 /* perform various self-tests */
!File: inputtype.h
1986-10-06 20:36:30 +00:00
#define INP_READ_IN_ONE 1 /* read input file in one */
1986-04-17 09:28:09 +00:00
1986-04-22 22:36:16 +00:00
!File: maxset.h
#define MAXSET 1024 /* maximum number of elements in a set,
but what is a reasonable choice ???
*/
1986-04-25 10:14:08 +00:00
!File: ndir.h
#define NDIRS 16 /* maximum number of directories searched */
1986-05-01 19:06:53 +00:00
!File: density.h
#define DENSITY 3 /* see casestat.C for an explanation */