+ 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
17 lines
228 B
C
17 lines
228 B
C
#include "em_private.h"
|
|
|
|
/* $Id$ */
|
|
|
|
void CC_bhilb(int op, arith n, label l, int i)
|
|
{
|
|
/* BSS or HOL with size n, initial value a ILB(l),
|
|
and flag i
|
|
*/
|
|
PS(op);
|
|
CST(n);
|
|
COMMA();
|
|
ILB(l);
|
|
COMMA();
|
|
CST((arith) i);
|
|
NL();
|
|
}
|