1987-03-09 19:15:41 +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".
|
|
|
|
*/
|
1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1984-05-17 14:14:29 +00:00
|
|
|
|
1984-05-17 13:42:36 +00:00
|
|
|
typedef char byte;
|
|
|
|
typedef char bool;
|
|
|
|
typedef struct line line_t;
|
|
|
|
typedef struct line *line_p;
|
|
|
|
typedef struct sym sym_t;
|
|
|
|
typedef struct sym *sym_p;
|
|
|
|
typedef struct num num_t;
|
|
|
|
typedef struct num *num_p;
|
|
|
|
typedef struct arg arg_t;
|
|
|
|
typedef struct arg *arg_p;
|
|
|
|
typedef struct argbytes argb_t;
|
|
|
|
typedef struct argbytes *argb_p;
|
|
|
|
typedef struct regs reg_t;
|
|
|
|
typedef struct regs *reg_p;
|
|
|
|
#ifdef LONGOFF
|
|
|
|
typedef long offset;
|
|
|
|
#else
|
|
|
|
typedef short offset;
|
|
|
|
#endif
|