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

Diff for /src/usr.bin/awk/awk.h between version 1.10 and 1.11

version 1.10, 2002/12/19 21:24:28 version 1.11, 2004/12/30 01:52:48
Line 23 
Line 23 
 THIS SOFTWARE.  THIS SOFTWARE.
 ****************************************************************/  ****************************************************************/
   
   #include <assert.h>
   
 typedef double  Awkfloat;  typedef double  Awkfloat;
   
 /* unsigned char is more trouble than it's worth */  /* unsigned char is more trouble than it's worth */
Line 200 
Line 202 
   
 /* structures used by regular expression matching machinery, mostly b.c: */  /* structures used by regular expression matching machinery, mostly b.c: */
   
 #define NCHARS  (256+1)         /* 256 handles 8-bit chars; 128 does 7-bit */  #define NCHARS  (256+3)         /* 256 handles 8-bit chars; 128 does 7-bit */
                                 /* watch out in match(), etc. */                                  /* watch out in match(), etc. */
 #define NSTATES 32  #define NSTATES 32
   

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