1987-03-25 23:14:43 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1986-07-18 22:23:23 +00:00
|
|
|
/* $Header$ */
|
|
|
|
/* S T A T E M E N T - B L O C K D E F I N I T I O N S */
|
|
|
|
|
|
|
|
struct stmt_block {
|
|
|
|
struct stmt_block *next;
|
|
|
|
label st_break;
|
|
|
|
label st_continue;
|
|
|
|
};
|
|
|
|
|
1987-01-24 00:25:56 +00:00
|
|
|
/* ALLOCDEF "stmt_block" 5 */
|