diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-06 10:16:45 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-06 10:16:45 (GMT) |
commit | e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c (patch) | |
tree | b1233f9c2a3fddf9f4d2108316efc48a577e207c /generic | |
parent | 00fa35903e2fbdfd338272cca5a688e72cfa2fe5 (diff) | |
download | tcl-e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c.zip tcl-e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c.tar.gz tcl-e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c.tar.bz2 |
* generic/tclAlloc.c: Small Borland compatibility fix.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclAlloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclAlloc.c b/generic/tclAlloc.c index e40fa34..03b4c05 100644 --- a/generic/tclAlloc.c +++ b/generic/tclAlloc.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAlloc.c,v 1.10 2001/07/17 02:01:23 mdejong Exp $ + * RCS: @(#) $Id: tclAlloc.c,v 1.11 2001/09/06 10:16:45 davygrvy Exp $ */ #include "tclInt.h" @@ -33,7 +33,7 @@ * We should really make use of AC_CHECK_TYPE(caddr_t) * here, but it can wait until Tcl uses config.h properly. */ -#if defined(MAC_TCL) || defined(_MSC_VER) || defined(__MINGW32__) +#if defined(MAC_TCL) || defined(_MSC_VER) || defined(__MINGW32__) || defined(__BORLANDC__) typedef unsigned long caddr_t; #endif |