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

Diff for /src/usr.bin/make/targ.c between version 1.25 and 1.26

version 1.25, 2000/06/23 16:23:26 version 1.26, 2000/09/14 13:32:08
Line 39 
Line 39 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
 #ifndef lint  
 #if 0  
 static char sccsid[] = "@(#)targ.c      8.2 (Berkeley) 3/19/94";  
 #else  
 static char *rcsid = "$OpenBSD$";  
 #endif  
 #endif /* not lint */  
   
 /*-  /*-
  * targ.c --   * targ.c --
  *      Functions for maintaining the Lst allTargets. Target nodes are   *      Functions for maintaining the Lst allTargets. Target nodes are
Line 91 
Line 83 
 #include          "hash.h"  #include          "hash.h"
 #include          "dir.h"  #include          "dir.h"
   
   #ifndef lint
   #if 0
   static char sccsid[] = "@(#)targ.c      8.2 (Berkeley) 3/19/94";
   #else
   UNUSED
   static char *rcsid = "$OpenBSD$";
   #endif
   #endif /* not lint */
   
 static LIST       allTargets;   /* the list of all targets found so far */  static LIST       allTargets;   /* the list of all targets found so far */
 #ifdef CLEANUP  #ifdef CLEANUP
 static LIST       allGNs;       /* List of all the GNodes */  static LIST       allGNs;       /* List of all the GNodes */
Line 111 
Line 112 
  * Targ_Init --   * Targ_Init --
  *      Initialize this module   *      Initialize this module
  *   *
  * Results:  * Side Effects:
  *      None  
  *  
  * Side Effects:  
  *      The allTargets list and the targets hash table are initialized   *      The allTargets list and the targets hash table are initialized
  *-----------------------------------------------------------------------   *-----------------------------------------------------------------------
  */   */

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26