mirror of
https://github.com/cc65/cc65.git
synced 2025-08-16 12:27:49 +00:00
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:
@@ -90,8 +90,8 @@ struct SymTable {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* Symbol tables */
|
/* Symbol tables */
|
||||||
SymTable* CurrentScope; /* Pointer to current symbol table */
|
extern SymTable* CurrentScope; /* Pointer to current symbol table */
|
||||||
SymTable* RootScope; /* Root symbol table */
|
extern SymTable* RootScope; /* Root symbol table */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user