ack/modules/src/em_code/bhdnam.c
2015-06-24 23:41:46 +01:00

19 lines
273 B
C

#include "em_code.h"
#include "em_private.h"
/* $Id$ */
void CC_bhdnam(int op, arith n, char *s, arith off, int i)
{
/* BSS or HOL with size n, initial value a dnam(s, off),
and flag i
*/
PS(op);
CST(n);
COMMA();
NOFF(s, off);
COMMA();
CST((arith) i);
NL();
}