ack/modules/src/em_code/bhfcon.c

23 lines
277 B
C
Raw Normal View History

1987-11-12 11:59:31 +00:00
#include "em_private.h"
1989-10-13 14:03:25 +00:00
/* $Header$ */
1993-11-10 10:26:07 +00:00
void
1987-11-12 11:59:31 +00:00
CC_bhfcon(op, n, s, sz, i)
arith n;
char *s;
arith sz;
int i;
{
/* BSS or HOL with size n, initial value an FCON (s, sz),
and flag i
*/
PS(op);
CST(n);
COMMA();
WCON(sp_fcon, s, sz);
COMMA();
CST((arith) i);
NL();
}