diff options
author | Kevin B Kenny <kennykb@acm.org> | 2017-03-15 02:40:56 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2017-03-15 02:40:56 (GMT) |
commit | bbe4542d364121720a36d12051e45c8c42cf25d9 (patch) | |
tree | cc56a92667132923a5a6db8320ad3e2df4a0fd60 /generic/tclInt.h | |
parent | bbf9191cdf2558bb4e7571a1cf57886d79826c7e (diff) | |
parent | 89b08916f5e330151206c6ab42468f957bfd41af (diff) | |
download | tcl-bbe4542d364121720a36d12051e45c8c42cf25d9.zip tcl-bbe4542d364121720a36d12051e45c8c42cf25d9.tar.gz tcl-bbe4542d364121720a36d12051e45c8c42cf25d9.tar.bz2 |
Compile [clock clicks], [clock microseconds], [clock milliseconds] and [clock seconds].
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index e8b93c2..562e895 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3516,6 +3516,12 @@ MODULE_SCOPE int TclCompileBreakCmd(Tcl_Interp *interp, MODULE_SCOPE int TclCompileCatchCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileClockClicksCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileClockReadingCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileConcatCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); |