diff options
author | redman <redman> | 1999-03-10 23:19:09 (GMT) |
---|---|---|
committer | redman <redman> | 1999-03-10 23:19:09 (GMT) |
commit | 2ef4d3492a315e6e57add9c6d15651ce05c8457c (patch) | |
tree | d54e1c4e72b47a72d100dbac6234e44ac24b80a3 /generic/tclStubInit.c | |
parent | 470a185b2846f7f7c9ea5251e65960da364a28f1 (diff) | |
download | tcl-2ef4d3492a315e6e57add9c6d15651ce05c8457c.zip tcl-2ef4d3492a315e6e57add9c6d15651ce05c8457c.tar.gz tcl-2ef4d3492a315e6e57add9c6d15651ce05c8457c.tar.bz2 |
Add Tcl_GetVersion to stubs table, add 6 additional slots for future use.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 902f528..18070f6 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.3 1999/03/10 05:52:50 stanton Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.4 1999/03/10 23:19:09 redman Exp $ */ #include "tclInt.h" @@ -349,6 +349,13 @@ TclStubs tclStubs = { Tcl_VarEvalVA, /* 276 */ Tcl_WaitPid, /* 277 */ panicVA, /* 278 */ + Tcl_GetVersion, /* 279 */ + use, /* 280 */ + use, /* 281 */ + use, /* 282 */ + use, /* 283 */ + use, /* 284 */ + use, /* 285 */ }; TclStubs *tclStubsPtr = &tclStubs; |