removed static declarations
parent
5723e1d29b
commit
d8252a8967
|
@ -10,8 +10,8 @@
|
||||||
#define MAX_STACK 100
|
#define MAX_STACK 100
|
||||||
#endif // MAX_STACK
|
#endif // MAX_STACK
|
||||||
|
|
||||||
static int sp = 0;
|
int sp = 0;
|
||||||
static double val[MAX_STACK];
|
double val[MAX_STACK];
|
||||||
|
|
||||||
/* length: current length of stack */
|
/* length: current length of stack */
|
||||||
#define length() sp
|
#define length() sp
|
||||||
|
|
Loading…
Reference in New Issue