Make the scope variables extern
git-svn-id: svn://svn.cc65.org/cc65/trunk@2819 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
09a070edc6
commit
01083b9534
1 changed files with 2 additions and 2 deletions
|
@ -90,8 +90,8 @@ struct SymTable {
|
|||
};
|
||||
|
||||
/* Symbol tables */
|
||||
SymTable* CurrentScope; /* Pointer to current symbol table */
|
||||
SymTable* RootScope; /* Root symbol table */
|
||||
extern SymTable* CurrentScope; /* Pointer to current symbol table */
|
||||
extern SymTable* RootScope; /* Root symbol table */
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue