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

Diff for /src/usr.bin/awk/parse.c between version 1.9 and 1.10

version 1.9, 2020/06/10 21:03:36 version 1.10, 2020/06/13 01:21:01
Line 94 
Line 94 
         return(x);          return(x);
 }  }
   
   Node *node5(int a, Node *b, Node *c, Node *d, Node *e, Node *f)
   {
           Node *x;
   
           x = nodealloc(5);
           x->nobj = a;
           x->narg[0] = b;
           x->narg[1] = c;
           x->narg[2] = d;
           x->narg[3] = e;
           x->narg[4] = f;
           return(x);
   }
   
 Node *stat1(int a, Node *b)  Node *stat1(int a, Node *b)
 {  {
         Node *x;          Node *x;
Line 162 
Line 176 
         Node *x;          Node *x;
   
         x = node4(a,b,c,d,e);          x = node4(a,b,c,d,e);
           x->ntype = NEXPR;
           return(x);
   }
   
   Node *op5(int a, Node *b, Node *c, Node *d, Node *e, Node *f)
   {
           Node *x;
   
           x = node5(a,b,c,d,e,f);
         x->ntype = NEXPR;          x->ntype = NEXPR;
         return(x);          return(x);
 }  }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10