aboutsummaryrefslogtreecommitdiffstats
path: root/helpers
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-06-27 11:55:40 +0300
committerArnold D. Robbins <arnold@skeeve.com>2013-06-27 11:55:40 +0300
commitcafd9f8ce2abbfd4e84a374a2081c93c02a1edac (patch)
tree5ed23a17305b92af5d2716154437051c779a65a5 /helpers
parentd18166bf5ba5c8ca75b57afc033ab3aa3aa5fc7b (diff)
parent8e9e1dfbc6c34a6d502d9738b651ae4c70806b1b (diff)
downloadegawk-cafd9f8ce2abbfd4e84a374a2081c93c02a1edac.tar.gz
egawk-cafd9f8ce2abbfd4e84a374a2081c93c02a1edac.tar.bz2
egawk-cafd9f8ce2abbfd4e84a374a2081c93c02a1edac.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'helpers')
-rw-r--r--helpers/ChangeLog12
-rw-r--r--helpers/testdfa.c2
2 files changed, 14 insertions, 0 deletions
diff --git a/helpers/ChangeLog b/helpers/ChangeLog
new file mode 100644
index 00000000..4b720787
--- /dev/null
+++ b/helpers/ChangeLog
@@ -0,0 +1,12 @@
+2013-06-27 Arnold D. Robbins <arnold@skeeve.com>
+
+ * ChangeLog: Created.
+ * testdfa.c: Add ifdef around xalloc.h, for use with grep dfa.
+
+2013-06-03 Arnold D. Robbins <arnold@skeeve.com>
+
+ * testdfa.c: New file.
+
+2013-06-03 Arnold D. Robbins <arnold@skeeve.com>
+
+ * testnet.awk, testnet.c, fixdump.awk: New files.
diff --git a/helpers/testdfa.c b/helpers/testdfa.c
index 653a28f8..c644fb04 100644
--- a/helpers/testdfa.c
+++ b/helpers/testdfa.c
@@ -732,6 +732,7 @@ char casetable[] = {
#undef C
+#ifdef GREP_DFA /* not needed for gawk */
/* xalloc.h -- malloc with out-of-memory checking
Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
@@ -1069,3 +1070,4 @@ xmemdup (T const *p, size_t s)
#endif /* !XALLOC_H_ */
+#endif /* GREP_DFA */