summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-05-27 20:44:36 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-05-27 20:44:36 (GMT)
commit33afeb271a63304fff0a87b1c30b0ac87187884b (patch)
tree540f392c02a2a3d90818567ff01f513d19f7e5c5 /generic/tclExecute.c
parent1586f3fc7d08ac5d3c07069a621630fdfad84cb2 (diff)
downloadtcl-33afeb271a63304fff0a87b1c30b0ac87187884b.zip
tcl-33afeb271a63304fff0a87b1c30b0ac87187884b.tar.gz
tcl-33afeb271a63304fff0a87b1c30b0ac87187884b.tar.bz2
better (?) #ifdeferry for the last fix
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 6b88e55..cd93261 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -11,10 +11,15 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.141 2004/05/27 20:08:20 msofer Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.142 2004/05/27 20:44:36 msofer Exp $
*/
+#ifdef STDC_HEADERS
#include <stddef.h>
+#else
+typedef int ptrdiff_t;
+#endif
+
#include "tclInt.h"
#include "tclCompile.h"