summaryrefslogtreecommitdiff
path: root/maketables.c
diff options
context:
space:
mode:
authornigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:38:49 +0000
committernigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:38:49 +0000
commit0c8732c8583c7e31476c0ec1c0ac92cc7e5f8bc0 (patch)
tree97b11a15f98ccfb7a200cc428c3bed36fd023f0f /maketables.c
parentc87b6bbacc291c0a1e1d8a396de1b621151a7822 (diff)
downloadpcre-0c8732c8583c7e31476c0ec1c0ac92cc7e5f8bc0.tar.gz
Load pcre-2.02 into code/trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@27 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'maketables.c')
-rw-r--r--maketables.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/maketables.c b/maketables.c
index 370a0e9..01943d3 100644
--- a/maketables.c
+++ b/maketables.c
@@ -8,7 +8,7 @@ and semantics are as close as possible to those of the Perl 5 language.
Written by: Philip Hazel <ph10@cam.ac.uk>
- Copyright (c) 1998 University of Cambridge
+ Copyright (c) 1997-1999 University of Cambridge
-----------------------------------------------------------------------------
Permission is granted to anyone to use this software for any purpose on any
@@ -31,10 +31,10 @@ See the file Tech.Notes for some information on the internals.
/* This file is compiled on its own as part of the PCRE library. However,
-it is also included in the compilation of deftables.c, in which case the macro
-DEFTABLES is defined. */
+it is also included in the compilation of dftables.c, in which case the macro
+DFTABLES is defined. */
-#ifndef DEFTABLES
+#ifndef DFTABLES
#include "internal.h"
#endif
@@ -48,7 +48,7 @@ DEFTABLES is defined. */
a pointer to them. They are build using the ctype functions, and consequently
their contents will depend upon the current locale setting. When compiled as
part of the library, the store is obtained via pcre_malloc(), but when compiled
-inside deftables, use malloc().
+inside dftables, use malloc().
Arguments: none
Returns: pointer to the contiguous block of data
@@ -60,7 +60,7 @@ pcre_maketables(void)
unsigned char *yield, *p;
int i;
-#ifndef DEFTABLES
+#ifndef DFTABLES
yield = (pcre_malloc)(tables_length);
#else
yield = malloc(tables_length);