summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2003-12-15 00:49:38 (GMT)
committerdavygrvy <davygrvy@pobox.com>2003-12-15 00:49:38 (GMT)
commit142cc53e5299db89aad4d9aae4963170e882282e (patch)
tree45e9ee95dadf4be02b81aae11b349eb02bccf9aa /generic/tclIntDecls.h
parent6ae96a37e6162c036ed6bcda3336270182bf6d8b (diff)
downloadtcl-142cc53e5299db89aad4d9aae4963170e882282e.zip
tcl-142cc53e5299db89aad4d9aae4963170e882282e.tar.gz
tcl-142cc53e5299db89aad4d9aae4963170e882282e.tar.bz2
* generic/tclInt.decls: commented-out entry for
TclpCheckStackSpace, removing it from the Stubs table. It's already declared in tclInt.h and labeled as a function that is not to be exported. Regened tables.
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r--generic/tclIntDecls.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h
index c93e02f..429c6cc 100644
--- a/generic/tclIntDecls.h
+++ b/generic/tclIntDecls.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIntDecls.h,v 1.54 2003/11/01 01:31:21 dkf Exp $
+ * RCS: @(#) $Id: tclIntDecls.h,v 1.55 2003/12/15 00:49:38 davygrvy Exp $
*/
#ifndef _TCLINTDECLS
@@ -706,11 +706,7 @@ EXTERN size_t TclpStrftime _ANSI_ARGS_((char * s, size_t maxsize,
CONST char * format, CONST struct tm * t,
int useGMT));
#endif
-#ifndef TclpCheckStackSpace_TCL_DECLARED
-#define TclpCheckStackSpace_TCL_DECLARED
-/* 135 */
-EXTERN int TclpCheckStackSpace _ANSI_ARGS_((void));
-#endif
+/* Slot 135 is reserved */
/* Slot 136 is reserved */
/* Slot 137 is reserved */
#ifndef TclGetEnv_TCL_DECLARED
@@ -1125,7 +1121,7 @@ typedef struct TclIntStubs {
int (*tclpHasSockets) _ANSI_ARGS_((Tcl_Interp * interp)); /* 132 */
struct tm * (*tclpGetDate) _ANSI_ARGS_((TclpTime_t time, int useGMT)); /* 133 */
size_t (*tclpStrftime) _ANSI_ARGS_((char * s, size_t maxsize, CONST char * format, CONST struct tm * t, int useGMT)); /* 134 */
- int (*tclpCheckStackSpace) _ANSI_ARGS_((void)); /* 135 */
+ void *reserved135;
void *reserved136;
void *reserved137;
CONST84_RETURN char * (*tclGetEnv) _ANSI_ARGS_((CONST char * name, Tcl_DString * valuePtr)); /* 138 */
@@ -1644,10 +1640,7 @@ extern TclIntStubs *tclIntStubsPtr;
#define TclpStrftime \
(tclIntStubsPtr->tclpStrftime) /* 134 */
#endif
-#ifndef TclpCheckStackSpace
-#define TclpCheckStackSpace \
- (tclIntStubsPtr->tclpCheckStackSpace) /* 135 */
-#endif
+/* Slot 135 is reserved */
/* Slot 136 is reserved */
/* Slot 137 is reserved */
#ifndef TclGetEnv