23 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 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));
 | 
						|
	}
 | 
						|
}
 |