| 222 | } |
| 223 | |
| 224 | static int Tcl_ops_system(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 225 | wrapper->resetCommandLine(argc, 1, argv); |
| 226 | |
| 227 | if (OPS_System() < 0) return TCL_ERROR; |
| 228 | |
| 229 | return TCL_OK; |
| 230 | } |
| 231 | |
| 232 | static int Tcl_ops_numberer(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 233 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected