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

Diff for /src/usr.bin/doas/parse.y between version 1.22 and 1.23

version 1.22, 2016/09/15 00:58:23 version 1.23, 2016/10/05 17:36:53
Line 55 
Line 55 
 static void yyerror(const char *, ...);  static void yyerror(const char *, ...);
 static int yylex(void);  static int yylex(void);
   
   static size_t
   arraylen(const char **arr)
   {
           size_t cnt = 0;
   
           while (*arr) {
                   cnt++;
                   arr++;
           }
           return cnt;
   }
   
 %}  %}
   
 %token TPERMIT TDENY TAS TCMD TARGS  %token TPERMIT TDENY TAS TCMD TARGS

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23