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

Diff for /src/usr.bin/sudo/Attic/parse.yacc between version 1.19 and 1.20

version 1.19, 2007/12/03 15:09:47 version 1.20, 2008/01/21 19:44:29
Line 60 
Line 60 
 #ifdef HAVE_LSEARCH  #ifdef HAVE_LSEARCH
 # include <search.h>  # include <search.h>
 #endif /* HAVE_LSEARCH */  #endif /* HAVE_LSEARCH */
   #include <limits.h>
   
 #include "sudo.h"  #include "sudo.h"
 #include "parse.h"  #include "parse.h"
Line 69 
Line 70 
 #endif /* HAVE_LSEARCH */  #endif /* HAVE_LSEARCH */
   
 #ifndef lint  #ifndef lint
 __unused static const char rcsid[] = "$Sudo: parse.yacc,v 1.204.2.9 2007/11/21 18:15:49 millert Exp $";  __unused static const char rcsid[] = "$Sudo: parse.yacc,v 1.204.2.10 2008/01/16 23:20:53 millert Exp $";
 #endif /* lint */  #endif /* lint */
   
   /*
    * We must define SIZE_MAX for yacc's skeleton.c.
    * If there is no SIZE_MAX or SIZE_T_MAX we have to assume that size_t
    * could be signed (as it is on SunOS 4.x).
    */
   #ifndef SIZE_MAX
   # ifdef SIZE_T_MAX
   #  define SIZE_MAX      SIZE_T_MAX
   # else
   #  define SIZE_MAX      INT_MAX
   # endif /* SIZE_T_MAX */
   #endif /* SIZE_MAX */
   
 /*  /*
  * Globals   * Globals

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