From 01083b9534293bd0ec1f9594e1d20569a2b55554 Mon Sep 17 00:00:00 2001 From: cuz Date: Mon, 22 Dec 2003 21:14:32 +0000 Subject: [PATCH] Make the scope variables extern git-svn-id: svn://svn.cc65.org/cc65/trunk@2819 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ca65/symtab.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca65/symtab.h b/src/ca65/symtab.h index d3787c3df..ba4ea7062 100644 --- a/src/ca65/symtab.h +++ b/src/ca65/symtab.h @@ -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 */ -- 2.39.5