[BACK]Return to symtable.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/symtable.h between version 1.1 and 1.2

version 1.1, 2001/05/23 12:34:50 version 1.2, 2007/11/17 16:39:45
Line 28 
Line 28 
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */   */
   
 struct Var_;  
   
 #define LOCAL_SIZE      7  #define LOCAL_SIZE      7
   
 /* SymTable is private to var.c, but is declared here to allow for  /* SymTable is private to var.c, but is declared here to allow for
    local declaration of context tables     local declaration of context tables
  */   */
 struct SymTable_ {  struct SymTable_ {
         struct Var_ *locals[LOCAL_SIZE];          char *locals[LOCAL_SIZE];
 };  };
   
 #endif  #endif

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2