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

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

version 1.20, 2000/07/17 23:54:26 version 1.21, 2000/09/14 13:32:06
Line 39 
Line 39 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
 #ifndef lint  
 #if 0  
 static char sccsid[] = "@(#)cond.c      8.2 (Berkeley) 1/2/94";  
 #else  
 static char rcsid[] = "$OpenBSD$";  
 #endif  
 #endif /* not lint */  
   
 /*-  /*-
  * cond.c --   * cond.c --
  *      Functions to handle conditionals in a makefile.   *      Functions to handle conditionals in a makefile.
Line 62 
Line 54 
 #include    "hash.h"  #include    "hash.h"
 #include    "dir.h"  #include    "dir.h"
 #include    "buf.h"  #include    "buf.h"
   
   #ifndef lint
   #if 0
   static char sccsid[] = "@(#)cond.c      8.2 (Berkeley) 1/2/94";
   #else
   UNUSED
   static char rcsid[] = "$OpenBSD$";
   #endif
   #endif /* not lint */
   
 /*  /*
  * The parsing of conditional expressions is based on this grammar:   * The parsing of conditional expressions is based on this grammar:

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