diff options
author | nijtmans <nijtmans@noemail.net> | 2009-11-18 23:46:04 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2009-11-18 23:46:04 (GMT) |
commit | d4717182b8a41281b7635522256c4703bf5bd6d5 (patch) | |
tree | 6938875528242df851eab59fa720c1395ee0f934 /generic/tclInt.h | |
parent | b0d5421fa166be130f5ee49d5eb7929f4f7b0ff7 (diff) | |
download | tcl-d4717182b8a41281b7635522256c4703bf5bd6d5.zip tcl-d4717182b8a41281b7635522256c4703bf5bd6d5.tar.gz tcl-d4717182b8a41281b7635522256c4703bf5bd6d5.tar.bz2 |
Fix [Bug 2883850]: pkgIndex.tcl doesn't
get created with static Tcl build
FossilOrigin-Name: 39268397d9e495cccd1fe6168edc5d0eb62e8db4
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index eefe5f6..d02df6b 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.447 2009/11/16 18:00:11 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.448 2009/11/18 23:46:05 nijtmans Exp $ */ #ifndef _TCLINT @@ -4026,6 +4026,22 @@ MODULE_SCOPE void TclBNInitBignumFromWideUInt(mp_int *bignum, Tcl_WideUInt initVal); /* + *---------------------------------------------------------------------- + * + * External (platform specific) initialization routine, these declarations + * explicitly don't use EXTERN since this code does not get compiled into the + * library: + * + *---------------------------------------------------------------------- + */ + +MODULE_SCOPE int TclplatformtestInit(Tcl_Interp *interp); +MODULE_SCOPE int TclObjTest_Init(Tcl_Interp *interp); +MODULE_SCOPE int TclThread_Init(Tcl_Interp *interp); +MODULE_SCOPE int Procbodytest_Init(Tcl_Interp *interp); +MODULE_SCOPE int Procbodytest_SafeInit(Tcl_Interp *interp); + +/* *---------------------------------------------------------------- * Macro used by the Tcl core to check whether a pattern has any characters * special to [string match]. The ANSI C "prototype" for this macro is: |