specials.h 453 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. /* OCCURANCES OF SPECIAL IDENTIFIERS */
  7. #define SP_SETJMP 1
  8. #define SP_TOTAL 1
  9. struct sp_id {
  10. char *si_identifier; /* its name */
  11. int si_flag; /* index into sp_occurred array */
  12. };
  13. extern char sp_occurred[]; /* idf.c */
  14. extern struct sp_id special_ids[]; /* main.c */