| 1070 | } |
| 1071 | |
| 1072 | static int Tcl_ops_systemSize(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1073 | wrapper->resetCommandLine(argc, 1, argv); |
| 1074 | |
| 1075 | if (OPS_systemSize() < 0) return TCL_ERROR; |
| 1076 | |
| 1077 | return TCL_OK; |
| 1078 | } |
| 1079 | |
| 1080 | static int Tcl_ops_version(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1081 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected