summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2001-09-05 03:12:03 (GMT)
committerdavygrvy <davygrvy@pobox.com>2001-09-05 03:12:03 (GMT)
commit507fd28603cd1ee621f47d63a5861b286d4013a9 (patch)
tree7f4570ee34ec60766a254b3115fe57d903c33cee
parent209a67df80204a6e99411c63efa4f3919295bc3e (diff)
downloadtcl-507fd28603cd1ee621f47d63a5861b286d4013a9.zip
tcl-507fd28603cd1ee621f47d63a5861b286d4013a9.tar.gz
tcl-507fd28603cd1ee621f47d63a5861b286d4013a9.tar.bz2
* generic/tcl.h: Borland compatibility change so ClientData was
properly typed as a void*
-rw-r--r--generic/tcl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 46ef74d..d210a6d 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.98 2001/09/04 18:06:34 vincentdarley Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.99 2001/09/05 03:12:03 davygrvy Exp $
*/
#ifndef _TCL
@@ -330,7 +330,7 @@ typedef long LONG;
#endif
#ifndef _CLIENTDATA
-# if defined(__STDC__) || defined(__cplusplus)
+# if defined(__STDC__) || defined(__cplusplus) || defined(__BORLANDC__)
typedef void *ClientData;
# else
typedef int *ClientData;