1994-06-24 11:31:16 +00:00

21 lines
233 B
C

#include "em_private.h"
/* $Id$ */
void
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();
}