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

Diff for /src/usr.bin/make/gnode.h between version 1.17 and 1.18

version 1.17, 2010/07/19 19:46:44 version 1.18, 2012/03/22 13:47:12
Line 33 
Line 33 
 #ifndef LIST_TYPE  #ifndef LIST_TYPE
 #include "lst_t.h"  #include "lst_t.h"
 #endif  #endif
   #ifndef LOCATION_TYPE
   #include "location.h"
   #endif
 #ifndef SYMTABLE_H  #ifndef SYMTABLE_H
 #include "symtable.h"  #include "symtable.h"
 #endif  #endif
Line 127 
Line 130 
     LIST preds;         /* Nodes that must be made before this one */      LIST preds;         /* Nodes that must be made before this one */
   
     SymTable context;   /* The local variables */      SymTable context;   /* The local variables */
     unsigned long lineno;/* First line number of commands.  */      Location origin;    /* First line number and file name of commands. */
     const char *fname;  /* File name of commands.  */  
     LIST commands;      /* Creation commands */      LIST commands;      /* Creation commands */
     LIST expanded;      /* Expanded commands */      LIST expanded;      /* Expanded commands */
     struct Suff_ *suffix;/* Suffix for the node (determined by      struct Suff_ *suffix;/* Suffix for the node (determined by

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18