+ 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
12 lines
122 B
C
12 lines
122 B
C
#include "em_private.h"
|
|
|
|
/* $Id$ */
|
|
|
|
void CC_exc(arith c1,arith c2)
|
|
{
|
|
PS(ps_exc);
|
|
CST(c1);
|
|
COMMA();
|
|
CST(c2);
|
|
NL();
|
|
}
|