| 2237 | } |
| 2238 | |
| 2239 | int mingw_execvp(const char *cmd, char *const *argv) |
| 2240 | { |
| 2241 | char *prog = path_lookup(cmd, 0); |
| 2242 | |
| 2243 | if (prog) { |
| 2244 | mingw_execv(prog, argv); |
| 2245 | free(prog); |
| 2246 | } else |
| 2247 | errno = ENOENT; |
| 2248 | |
| 2249 | return -1; |
| 2250 | } |
| 2251 | |
| 2252 | int mingw_kill(pid_t pid, int sig) |
| 2253 | { |
nothing calls this directly
no test coverage detected