| 1022 | } |
| 1023 | |
| 1024 | static int Tcl_ops_InitialStateAnalysis(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1025 | wrapper->resetCommandLine(argc, 1, argv); |
| 1026 | |
| 1027 | if (OPS_InitialStateAnalysis() < 0) return TCL_ERROR; |
| 1028 | |
| 1029 | return TCL_OK; |
| 1030 | } |
| 1031 | |
| 1032 | static int Tcl_ops_totalCPU(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1033 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected