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

17 lines
216 B
C

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