removed static declarations

master
Tibor Bizjak 2023-07-10 20:33:26 +02:00
parent 5723e1d29b
commit d8252a8967
1 changed files with 2 additions and 2 deletions

View File

@ -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