14 lines
		
	
	
	
		
			155 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			155 B
		
	
	
	
		
			C
		
	
	
	
	
	
#define CODE_EXPANDER
 | 
						|
#include <em.h>
 | 
						|
#include <assert.h>
 | 
						|
 | 
						|
extern int busy; 
 | 
						|
 | 
						|
C_close()
 | 
						|
{
 | 
						|
	assert( busy);
 | 
						|
 | 
						|
	end_back();
 | 
						|
        close_back();
 | 
						|
	busy = 0;
 | 
						|
}
 |