| 302 | } |
| 303 | |
| 304 | static int Tcl_ops_fiber(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 305 | wrapper->resetCommandLine(argc, 1, argv); |
| 306 | |
| 307 | if (OPS_Fiber() < 0) return TCL_ERROR; |
| 308 | |
| 309 | return TCL_OK; |
| 310 | } |
| 311 | |
| 312 | static int Tcl_ops_patch(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 313 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected