15 lines
293 B
C
15 lines
293 B
C
/* $Header$ */
|
|
/* OCCURANCES OF SPECIAL IDENTIFIERS */
|
|
|
|
#define SP_SETJMP 1
|
|
|
|
#define SP_TOTAL 1
|
|
|
|
struct sp_id {
|
|
char *si_identifier; /* its name */
|
|
int si_flag; /* index into sp_occurred array */
|
|
};
|
|
|
|
extern char sp_occurred[]; /* idf.c */
|
|
extern struct sp_id special_ids[]; /* main.c */
|