aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 */