0ac16f6116
+ Addition of function prototypes. + Change function definitions to ANSI C style. + Convert to sed scripts some shell scripts for better portability. + Reduce usage of em_path.h
18 lines
260 B
C
18 lines
260 B
C
#include "em_private.h"
|
|
|
|
/* $Id$ */
|
|
|
|
void CC_bhfcon(int op, 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();
|
|
}
|