diff options
author | nijtmans <nijtmans@noemail.net> | 2009-11-30 23:10:38 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2009-11-30 23:10:38 (GMT) |
commit | 4773b9a7dd95cb39866a48fba3787f7f3dbc5636 (patch) | |
tree | 59ca63d8b9fe0b2ac3b8fa2d0424ad212afd70ad /generic/tcl.h | |
parent | 78394f19dfd813153b25aad4395ba1fe956de6de (diff) | |
download | tcl-4773b9a7dd95cb39866a48fba3787f7f3dbc5636.zip tcl-4773b9a7dd95cb39866a48fba3787f7f3dbc5636.tar.gz tcl-4773b9a7dd95cb39866a48fba3787f7f3dbc5636.tar.bz2 |
tcl.h Don't use EXPORT for Tcl_InitStubs
win/Makefile.in Better dependancies in case of static build.
FossilOrigin-Name: d63090dfb8f5eb259407fce8ad73b16db8d285dd
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 756015d..a13b897 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -14,7 +14,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.292 2009/10/29 18:38:08 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.293 2009/11/30 23:10:38 nijtmans Exp $ */ #ifndef _TCL @@ -2309,9 +2309,9 @@ typedef int (*Tcl_ArgvGenFuncProc)(ClientData clientData, Tcl_Interp *interp, * main library in case an extension is statically linked into an application. */ -EXTERN const char * Tcl_InitStubs (Tcl_Interp *interp, const char *version, +const char * Tcl_InitStubs(Tcl_Interp *interp, const char *version, int exact); -EXTERN const char * TclTomMathInitializeStubs (Tcl_Interp *interp, +const char * TclTomMathInitializeStubs(Tcl_Interp *interp, const char *version, int epoch, int revision); #ifndef USE_TCL_STUBS |