16 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "header.h"
 | 
						|
 | 
						|
common(n)
 | 
						|
arith n;
 | 
						|
{
 | 
						|
	extern int saved;
 | 
						|
	extern char labeltje[];
 | 
						|
 | 
						|
	switchseg(SEGBSS);
 | 
						|
	if (saved) {
 | 
						|
		fprint( codefile, COMM_FMT, labeltje, (long) n);
 | 
						|
		saved = 0;
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	bss(n);
 | 
						|
}
 |