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

Diff for /src/usr.bin/make/make.c between version 1.20 and 1.21

version 1.20, 2000/06/23 16:18:09 version 1.21, 2000/09/14 13:32:07
Line 39 
Line 39 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
 #ifndef lint  
 #if 0  
 static char sccsid[] = "@(#)make.c      8.1 (Berkeley) 6/6/93";  
 #else  
 static char rcsid[] = "$OpenBSD$";  
 #endif  
 #endif /* not lint */  
   
 /*-  /*-
  * make.c --   * make.c --
  *      The functions which perform the examination of targets and   *      The functions which perform the examination of targets and
Line 83 
Line 75 
 #include    "hash.h"  #include    "hash.h"
 #include    "dir.h"  #include    "dir.h"
 #include    "job.h"  #include    "job.h"
   
   #ifndef lint
   #if 0
   static char sccsid[] = "@(#)make.c      8.1 (Berkeley) 6/6/93";
   #else
   UNUSED
   static char rcsid[] = "$OpenBSD$";
   #endif
   #endif /* not lint */
   
 static LIST     toBeMade;       /* The current fringe of the graph. These  static LIST     toBeMade;       /* The current fringe of the graph. These
                                  * are nodes which await examination by                                   * are nodes which await examination by

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21