stmt.str 353 B

1234567891011121314
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. /* 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 */
  7. struct stmt_block {
  8. struct stmt_block *next;
  9. label st_break;
  10. label st_continue;
  11. };
  12. /* ALLOCDEF "stmt_block" 5 */