diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-05 03:12:03 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-05 03:12:03 (GMT) |
commit | 507fd28603cd1ee621f47d63a5861b286d4013a9 (patch) | |
tree | 7f4570ee34ec60766a254b3115fe57d903c33cee /generic/tcl.h | |
parent | 209a67df80204a6e99411c63efa4f3919295bc3e (diff) | |
download | tcl-507fd28603cd1ee621f47d63a5861b286d4013a9.zip tcl-507fd28603cd1ee621f47d63a5861b286d4013a9.tar.gz tcl-507fd28603cd1ee621f47d63a5861b286d4013a9.tar.bz2 |
* generic/tcl.h: Borland compatibility change so ClientData was
properly typed as a void*
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 4 |
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; |