ack/modules/src/em_code/bhilb.c
1987-11-12 11:59:31 +00:00

19 lines
219 B
C

#include "em_private.h"
CC_bhilb(op, n, l, i)
arith n;
label l;
int i;
{
/* BSS or HOL with size n, initial value a ILB(l),
and flag i
*/
PS(op);
CST(n);
COMMA();
ILB(l);
COMMA();
CST((arith) i);
NL();
}