glosym.h 475 B

123456789101112131415161718
  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. #ifndef MACH_PROTO_NCG_GLOSYM_H
  7. #define MACH_PROTO_NCG_GLOSYM_H
  8. typedef struct glosym {
  9. struct glosym *gl_next;
  10. string gl_name;
  11. word gl_rom[MAXROM+1];
  12. } glosym_t,*glosym_p;
  13. void enterglo(string name, word *romp);
  14. glosym_p lookglo(string name);
  15. #endif /* MACH_PROTO_NCG_GLOSYM_H */