1989-02-07 11:04:05 +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".
|
|
|
|
*/
|
2019-02-18 16:42:15 +00:00
|
|
|
#ifndef STMT_H_
|
|
|
|
#define STMT_H_
|
|
|
|
|
1994-06-27 08:03:14 +00:00
|
|
|
/* $Id$ */
|
1989-02-07 11:04:05 +00:00
|
|
|
/* 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;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ALLOCDEF "stmt_block" 5 */
|
2019-02-18 16:42:15 +00:00
|
|
|
|
|
|
|
#endif
|