summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2001-09-06 10:16:45 (GMT)
committerdavygrvy <davygrvy@pobox.com>2001-09-06 10:16:45 (GMT)
commite4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c (patch)
treeb1233f9c2a3fddf9f4d2108316efc48a577e207c /generic/tclAlloc.c
parent00fa35903e2fbdfd338272cca5a688e72cfa2fe5 (diff)
downloadtcl-e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c.zip
tcl-e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c.tar.gz
tcl-e4ce9ec2531ac779aa7a1ec7e7508fc2d55a8c6c.tar.bz2
* generic/tclAlloc.c: Small Borland compatibility fix.
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r--generic/tclAlloc.c4
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