18 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "em_private.h"
 | |
| 
 | |
| CC_bhpnam(op, n, p, i)
 | |
| 	arith n;
 | |
| 	char *p;
 | |
| 	int i;
 | |
| {
 | |
| 	/*	BSS or HOL with size n, initial value a PNAM(p),
 | |
| 		and flag i
 | |
| 	*/
 | |
| 	PS(op);
 | |
| 	CST(n);
 | |
| 	COMMA();
 | |
| 	PNAM(p);
 | |
| 	COMMA();
 | |
| 	CST((arith) i);
 | |
| 	NL();
 | |
| }
 |