diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2009-12-07 14:04:27 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2009-12-07 14:04:27 (GMT) |
commit | 0a1a1db5620ec53dd755544a21572bf4391b43ac (patch) | |
tree | ae2a311235b8b5aa693f768b2ce3f8e42b598221 /generic/tclBasic.c | |
parent | fa22561193e48c63681c637db297f6808b80ce1a (diff) | |
download | tcl-0a1a1db5620ec53dd755544a21572bf4391b43ac.zip tcl-0a1a1db5620ec53dd755544a21572bf4391b43ac.tar.gz tcl-0a1a1db5620ec53dd755544a21572bf4391b43ac.tar.bz2 |
missing declaration
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index fa9eb6e..33e0273 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.413 2009/12/06 20:35:38 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.414 2009/12/07 14:04:27 msofer Exp $ */ #include "tclInt.h" @@ -145,6 +145,7 @@ static Tcl_NRPostProc NRRunObjProc; static Tcl_NRPostProc TailcallCleanup; static Tcl_NRPostProc NRTailcallEval; +static Tcl_NRPostProc YieldCallback; /* * The following structure define the commands in the Tcl core. |