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