diff options
Diffstat (limited to 'generic/tclStubLib.c')
-rw-r--r-- | generic/tclStubLib.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c index 98b3255..3b44f98 100644 --- a/generic/tclStubLib.c +++ b/generic/tclStubLib.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubLib.c,v 1.10 2005/11/20 18:33:17 jenglish Exp $ + * RCS: @(#) $Id: tclStubLib.c,v 1.11 2005/11/27 02:33:49 das Exp $ */ /* @@ -29,9 +29,14 @@ /* * Ensure that Tcl_InitStubs is built as an exported symbol. The other stub - * functions should be built as non-exported symbols. + * symbols should be built as non-exported symbols. */ +MODULE_SCOPE TclStubs *tclStubsPtr; +MODULE_SCOPE TclPlatStubs *tclPlatStubsPtr; +MODULE_SCOPE TclIntStubs *tclIntStubsPtr; +MODULE_SCOPE TclIntPlatStubs *tclIntPlatStubsPtr; + TclStubs *tclStubsPtr = NULL; TclPlatStubs *tclPlatStubsPtr = NULL; TclIntStubs *tclIntStubsPtr = NULL; @@ -75,7 +80,7 @@ HasStubSupport( #undef Tcl_InitStubs #endif -CONST char * +MODULE_SCOPE CONST char * Tcl_InitStubs( Tcl_Interp *interp, CONST char *version, |