some cosmetic changes to fix warnings and forLoop

This commit is contained in:
Samuel D. Crow
2021-05-04 12:15:49 -05:00
parent e8a47bd3da
commit bf70fd087b
8 changed files with 102 additions and 50 deletions

View File

@@ -20,7 +20,7 @@ enum STATES:unsigned int
class subroutine
{
struct subroutine *called;
subroutine *called;
unsigned int ret;
public:
@@ -30,7 +30,7 @@ public:
{}
};
extern struct subroutine *callStack;
extern subroutine *callStack;
/* function prototype */
unsigned int run();