25 lines
406 B
Plaintext
25 lines
406 B
Plaintext
/* $Header$ */
|
|
/* C O D E - G E N E R A T O R D E F I N I T I O N S */
|
|
|
|
struct stat_block {
|
|
struct stat_block *next;
|
|
label st_break;
|
|
label st_continue;
|
|
};
|
|
|
|
/* ALLOCDEF "stat_block" */
|
|
|
|
struct string_cst { /* storing string constants */
|
|
struct string_cst *next;
|
|
char *sc_value;
|
|
int sc_len;
|
|
label sc_dlb;
|
|
};
|
|
|
|
/* ALLOCDEF "string_cst" */
|
|
|
|
#define LVAL 0
|
|
#define RVAL 1
|
|
#define FALSE 0
|
|
#define TRUE 1
|