ack/modules/src/em_code/bhpnam.c

19 lines
222 B
C
Raw Normal View History

1987-11-12 11:59:31 +00:00
#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();
}