1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-13 09:31:53 +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:
cuz 2003-12-22 21:14:32 +00:00
parent 09a070edc6
commit 01083b9534

View File

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