version 1.1.1.1, 1999/09/28 21:26:21
|
version 1.2, 2000/06/27 18:28:48
|
Line 12
|
Line 12
|
#include "capaParser.h" /* _symbol structure def */ |
#include "capaParser.h" /* _symbol structure def */ |
#include "capaCommon.h" |
#include "capaCommon.h" |
#include "capaFunction.h" |
#include "capaFunction.h" |
|
#ifdef YYSTYPE |
|
#undef YYSTYPE |
|
#endif |
|
#define YYSTYPE Symbol_p |
#include "capaToken.h" |
#include "capaToken.h" |
|
|
#ifdef __hpux |
#ifdef __hpux |
Line 36
|
Line 40
|
#define IDIV_op 5 |
#define IDIV_op 5 |
#define NOT_DEFINED_op 9 |
#define NOT_DEFINED_op 9 |
|
|
#ifdef YYSTYPE |
|
#undef YYSTYPE |
|
#endif |
|
#define YYSTYPE Symbol_p |
|
|
|
/* =============================================================== */ |
/* =============================================================== */ |
|
|
extern int Func_idx; |
extern int Func_idx; |
extern Symbol FuncStack[MAX_FUNC_NEST]; |
extern Symbol FuncStack[MAX_FUNC_NEST]; |
|
void fml_error(char *msg); |
double FormulaVal; |
double FormulaVal; |
int FormulaParseOK=1; |
int FormulaParseOK=1; |
|
|