=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/awk/awk.h,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/awk/awk.h 2002/12/19 21:24:28 1.10 --- src/usr.bin/awk/awk.h 2004/12/30 01:52:48 1.11 *************** *** 1,4 **** ! /* $OpenBSD: awk.h,v 1.10 2002/12/19 21:24:28 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved --- 1,4 ---- ! /* $OpenBSD: awk.h,v 1.11 2004/12/30 01:52:48 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved *************** *** 23,28 **** --- 23,30 ---- THIS SOFTWARE. ****************************************************************/ + #include + typedef double Awkfloat; /* unsigned char is more trouble than it's worth */ *************** *** 200,206 **** /* structures used by regular expression matching machinery, mostly b.c: */ ! #define NCHARS (256+1) /* 256 handles 8-bit chars; 128 does 7-bit */ /* watch out in match(), etc. */ #define NSTATES 32 --- 202,208 ---- /* structures used by regular expression matching machinery, mostly b.c: */ ! #define NCHARS (256+3) /* 256 handles 8-bit chars; 128 does 7-bit */ /* watch out in match(), etc. */ #define NSTATES 32