summaryrefslogtreecommitdiff
path: root/usr.bin/awk/awk.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-12-30 01:52:49 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-12-30 01:52:49 +0000
commit92f3150912b4d375df827a15d8e929575c71c014 (patch)
treef638bbe716809fd27621b25c2813a1e9478a88bc /usr.bin/awk/awk.h
parent0f3aec300d9d954add1864f9c69be31ab4f02569 (diff)
Update to version 20041222; OK deraadt@
Diffstat (limited to 'usr.bin/awk/awk.h')
-rw-r--r--usr.bin/awk/awk.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/awk/awk.h b/usr.bin/awk/awk.h
index e29804c8c83..2159f662d9f 100644
--- a/usr.bin/awk/awk.h
+++ b/usr.bin/awk/awk.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: awk.h,v 1.10 2002/12/19 21:24:28 millert Exp $ */
+/* $OpenBSD: awk.h,v 1.11 2004/12/30 01:52:48 millert Exp $ */
/****************************************************************
Copyright (C) Lucent Technologies 1997
All Rights Reserved
@@ -23,6 +23,8 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
****************************************************************/
+#include <assert.h>
+
typedef double Awkfloat;
/* unsigned char is more trouble than it's worth */
@@ -200,7 +202,7 @@ extern int pairstack[], paircnt;
/* 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. */
#define NSTATES 32