ack/util/ceg/defaults/pseudo/C_end.c

24 lines
314 B
C

#define CODE_EXPANDER
#include <em.h>
#include "back.h"
extern int B_locals_created;
extern int B_procno;
C_end( l)
arith l;
{
char *p;
swtxt();
if ( !B_locals_created) {
p = extnd_pro( B_procno);
symbol_definition( p);
set_local_visible( p);
C_locals( l);
C_jump( extnd_start( B_procno));
}
}