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

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/cond.c between version 1.74 and 1.75

version 1.74, 2016/02/18 18:29:14 version 1.75, 2017/04/16 20:59:04
Line 91  __RCSID("$NetBSD$");
Line 91  __RCSID("$NetBSD$");
  *   *
  */   */
   
   #include    <assert.h>
 #include    <ctype.h>  #include    <ctype.h>
 #include    <errno.h>    /* For strtoul() error checking */  #include    <errno.h>    /* For strtoul() error checking */
   
Line 1174  Cond_EvalExpression(const struct If *inf
Line 1175  Cond_EvalExpression(const struct If *inf
                 break;                  break;
         dflt_info = info;          dflt_info = info;
     }      }
       assert(info != NULL);
   
     if_info = info != NULL ? info : ifs + 4;      if_info = info;
     condExpr = line;      condExpr = line;
     condPushBack = TOK_NONE;      condPushBack = TOK_NONE;
   

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75

CVSweb <webmaster@jp.NetBSD.org>