ack/util/ceg/defaults/pseudo/C_end.c
1993-11-10 15:07:12 +00:00

25 lines
319 B
C

#define CODE_EXPANDER
#include <em.h>
#include "back.h"
extern int B_locals_created;
extern int B_procno;
void
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));
}
}