types.h 621 B

12345678910111213141516171819202122232425
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. typedef char byte;
  7. typedef char bool;
  8. typedef struct line line_t;
  9. typedef struct line *line_p;
  10. typedef struct sym sym_t;
  11. typedef struct sym *sym_p;
  12. typedef struct num num_t;
  13. typedef struct num *num_p;
  14. typedef struct arg arg_t;
  15. typedef struct arg *arg_p;
  16. typedef struct argbytes argb_t;
  17. typedef struct argbytes *argb_p;
  18. typedef struct regs reg_t;
  19. typedef struct regs *reg_p;
  20. #ifdef LONGOFF
  21. typedef long offset;
  22. #else
  23. typedef short offset;
  24. #endif