| 1062 | } |
| 1063 | |
| 1064 | static int Tcl_ops_numIter(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1065 | wrapper->resetCommandLine(argc, 1, argv); |
| 1066 | |
| 1067 | if (OPS_numIter() < 0) return TCL_ERROR; |
| 1068 | |
| 1069 | return TCL_OK; |
| 1070 | } |
| 1071 | |
| 1072 | static int Tcl_ops_systemSize(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1073 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected