ack/lang/cem/cemcom.ansi/stmt.str
carl 750a6bc684 Better ANSI C compatibility and portability:
+ Addition of function prototypes and include files.
+ Change function definitions to ANSI C style.
+ Initial support for CMake
+ Scripts to generate compiler header is now sed based.
2019-02-19 00:54:23 +08:00

19 lines
393 B
Plaintext

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#ifndef STMT_H_
#define STMT_H_
/* $Id$ */
/* 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 */
#endif