ack/util/ceg/defaults/pseudo/C_end.c
1988-11-18 17:57:28 +00:00

24 lines
300 B
C

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