summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authordavygrvy <davygrvy@noemail.net>2001-09-06 10:16:45 (GMT)
committerdavygrvy <davygrvy@noemail.net>2001-09-06 10:16:45 (GMT)
commit7f0c6639f95d0afb500bb08268cb6fee62b93a8b (patch)
treeb1233f9c2a3fddf9f4d2108316efc48a577e207c /generic/tclAlloc.c
parent24106152aa7b65620ae278e3936bee15333653b8 (diff)
downloadtcl-7f0c6639f95d0afb500bb08268cb6fee62b93a8b.zip
tcl-7f0c6639f95d0afb500bb08268cb6fee62b93a8b.tar.gz
tcl-7f0c6639f95d0afb500bb08268cb6fee62b93a8b.tar.bz2
* generic/tclAlloc.c: Small Borland compatibility fix.
FossilOrigin-Name: e1fd7ed9f6946b35ee686e8f337e5fdd1569c6b3
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