export sourceTclFileEchoVerbose

This commit is contained in:
James Cherry 2019-06-04 10:18:14 -07:00
parent 61b1ac4d12
commit 94f3e7f0de
2 changed files with 5 additions and 5 deletions

View File

@ -34,10 +34,6 @@ static SwigInitFunc sta_swig_init;
static const char *init_filename = "[file join $env(HOME) .sta]";
static void
sourceTclFileEchoVerbose(const char *filename,
Tcl_Interp *interp);
void
staMain(Sta *sta,
int argc,
@ -165,7 +161,7 @@ findCmdLineKey(int argc,
}
// Use overridden version of source to echo cmds and results.
static void
void
sourceTclFileEchoVerbose(const char *filename,
Tcl_Interp *interp)
{

View File

@ -74,5 +74,9 @@ parseCmdsArg(int argc,
bool &native_cmds,
bool &compatibility_cmds);
void
sourceTclFileEchoVerbose(const char *filename,
Tcl_Interp *interp);
} // namespace
#endif