diff options
author | dgp <dgp@users.sourceforge.net> | 2004-05-04 20:09:33 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-05-04 20:09:33 (GMT) |
commit | 2742ad43c8f87f43b1ede78734ded19ce09c89b5 (patch) | |
tree | 31e9cb75db07943c35a5ae6787584abadda8218d /generic/tclThreadAlloc.c | |
parent | 9f072ac4043a1c048fb8ccb62c214508080ad25e (diff) | |
download | tcl-2742ad43c8f87f43b1ede78734ded19ce09c89b5.zip tcl-2742ad43c8f87f43b1ede78734ded19ce09c89b5.tar.gz tcl-2742ad43c8f87f43b1ede78734ded19ce09c89b5.tar.bz2 |
* generic/tclAlloc.c: Make sure Tclp*Alloc* routines get
* generic/tclInt.h: declared in the TCL_MEM_DEBUG and
* generic/tclThreadAlloc.c: TCL_THREADS configuration. [Bug 947564]
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-x | generic/tclThreadAlloc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index 70a7980..d18bf3a 100755 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -11,12 +11,11 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadAlloc.c,v 1.11 2004/04/30 20:06:44 dgp Exp $ + * RCS: @(#) $Id: tclThreadAlloc.c,v 1.12 2004/05/04 20:09:33 dgp Exp $ */ -#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) - #include "tclInt.h" +#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) /* * If range checking is enabled, an additional byte will be allocated |