summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/dftables.c
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2003-06-27 16:31:24 +0000
committerAndrei Zmievski <andrei@php.net>2003-06-27 16:31:24 +0000
commit357f62734ade0f293454596c46fce51d21275734 (patch)
tree2696f5e8696308f69a2c1e56b213609e2545d0e8 /ext/pcre/pcrelib/dftables.c
parent2e4ef86e10897a0e64500d3aeeaa59d58f8f4f5b (diff)
downloadphp-git-357f62734ade0f293454596c46fce51d21275734.tar.gz
Upgrading PCRE library to version 4.3.
Diffstat (limited to 'ext/pcre/pcrelib/dftables.c')
-rw-r--r--ext/pcre/pcrelib/dftables.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/dftables.c b/ext/pcre/pcrelib/dftables.c
index fe4ffcdb7a..9aa7b77e27 100644
--- a/ext/pcre/pcrelib/dftables.c
+++ b/ext/pcre/pcrelib/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"