summaryrefslogtreecommitdiff
path: root/dftables.c
diff options
context:
space:
mode:
authornigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:40:08 +0000
committernigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:40:08 +0000
commit776635721f3417106a59041ad7e77c4c815e1bd0 (patch)
tree1bbd6ba83e3faa1b6cebf413d2e080e51f95e483 /dftables.c
parentc8cb607ab7e12e185e86a8b23d413b7f9536f24c (diff)
downloadpcre-776635721f3417106a59041ad7e77c4c815e1bd0.tar.gz
Load pcre-4.1 into code/trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@65 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'dftables.c')
-rw-r--r--dftables.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/dftables.c b/dftables.c
index fe4ffcd..9aa7b77 100644
--- a/dftables.c
+++ b/dftables.c
@@ -55,13 +55,17 @@ int main(void)
int i;
const unsigned char *tables = pcre_maketables();
+/* There are two printf() calls here, because gcc in pedantic mode complains
+about the very long string otherwise. */
+
printf(
"/*************************************************\n"
"* Perl-Compatible Regular Expressions *\n"
"*************************************************/\n\n"
"/* This file is automatically written by the dftables auxiliary \n"
"program. If you edit it by hand, you might like to edit the Makefile to \n"
- "prevent its ever being regenerated.\n\n"
+ "prevent its ever being regenerated.\n\n");
+printf(
"This file is #included in the compilation of pcre.c to build the default\n"
"character tables which are used when no tables are passed to the compile\n"
"function. */\n\n"